* exit -- death of process. */
| 188 | * exit -- death of process. |
| 189 | */ |
| 190 | void |
| 191 | sys_sys_exit(struct thread *td, struct sys_exit_args *uap) |
| 192 | { |
| 193 | |
| 194 | exit1(td, uap->rval, 0); |
| 195 | /* NOTREACHED */ |
| 196 | } |
| 197 | |
| 198 | /* |
| 199 | * Exit: deallocate address space and other resources, change proc state to |