Changeset 735 for Whitix/trunk/kernel/process.c
- Timestamp:
- 07/07/08 15:22:06 (5 months ago)
- Files:
-
- 1 modified
-
Whitix/trunk/kernel/process.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
Whitix/trunk/kernel/process.c
r652 r735 338 338 339 339 /* Release all vmm areas */ 340 //if (VmProcessRemove)341 // MmapProcessRemove(current);340 if (VmProcessRemove) 341 VmProcessRemove(current); 342 342 343 343 if (VfsFreeFsContext) … … 373 373 waiters will have a reference to the process in question anyway. */ 374 374 375 SpinUnlockIrq(&procListLock); 376 375 377 ThrSchedule(); 376 377 SpinUnlockIrq(&procListLock);378 378 } 379 379