| 972 | } |
| 973 | |
| 974 | void |
| 975 | exec_cleanup(struct thread *td, struct vmspace *oldvmspace) |
| 976 | { |
| 977 | if ((td->td_pflags & TDP_EXECVMSPC) != 0) { |
| 978 | KASSERT(td->td_proc->p_vmspace != oldvmspace, |
| 979 | ("oldvmspace still used")); |
| 980 | vmspace_free(oldvmspace); |
| 981 | td->td_pflags &= ~TDP_EXECVMSPC; |
| 982 | } |
| 983 | } |
| 984 | |
| 985 | int |
| 986 | exec_map_first_page(struct image_params *imgp) |
no test coverage detected