Changeset 629 for trunk/kernel/kern/process.c
- Timestamp:
- May 17, 2019, 9:27:04 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/kernel/kern/process.c
r626 r629 166 166 #endif 167 167 168 // initialize GPT and VSL locks 169 remote_rwlock_init( XPTR( local_cxy , &vmm->gpt_lock ) , LOCK_VMM_GPT ); 168 // initialize VSL locks 170 169 remote_rwlock_init( XPTR( local_cxy , &vmm->vsl_lock ) , LOCK_VMM_VSL ); 171 170 … … 426 425 427 426 // initialize GPT and VSL locks 428 remote_rwlock_init( XPTR( local_cxy , &vmm->gpt_lock ) , LOCK_VMM_GPT );429 427 remote_rwlock_init( XPTR( local_cxy , &vmm->vsl_lock ) , LOCK_VMM_VSL ); 430 428 … … 1482 1480 1483 1481 // set COW flag in DATA, ANON, REMOTE vsegs for parent process VMM 1484 // this includes all par net process copies in all clusters1482 // this includes all parent process copies in all clusters 1485 1483 if( parent_process_cxy == local_cxy ) // reference is local 1486 1484 { … … 1707 1705 1708 1706 // initialize VSL and GPT locks 1709 remote_rwlock_init( XPTR( local_cxy , &vmm->vsl_lock ) , LOCK_VMM_VSL ); 1710 remote_rwlock_init( XPTR( local_cxy , &vmm->gpt_lock ) , LOCK_VMM_GPT ); 1707 remote_rwlock_init( XPTR( local_cxy , &vmm->vsl_lock ) , LOCK_VMM_VSL ); 1711 1708 1712 1709 // create kernel vsegs in GPT and VSL, as required by the hardware architecture
Note: See TracChangeset
for help on using the changeset viewer.