* Called after process has been wait(2)'ed upon and is being reaped. * The idea is to reclaim resources that we could not reclaim while * the process was still executing. */
(p)
| 589 | * the process was still executing. |
| 590 | */ |
| 591 | void |
| 592 | vm_waitproc(p) |
| 593 | struct proc *p; |
| 594 | { |
| 595 | |
| 596 | vmspace_exitfree(p); /* and clean-out the vmspace */ |
| 597 | } |
| 598 | |
| 599 | void |
| 600 | kick_proc0(void) |
no test coverage detected