Query: exit
OS: v7
Section: 2
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
EXIT(2) System Calls Manual EXIT(2)NAMEexit - terminate processSYNOPSISexit(status) int status; _exit(status) int status;DESCRIPTIONExit is the normal means of terminating a process. Exit closes all the process's files and notifies the parent process if it is executing a wait. The low-order 8 bits of status are available to the parent process. This call can never return. The C function exit may cause cleanup actions before the final `sys exit'. The function _exit circumvents all cleanup.SEE ALSOwait(2)ASSEMBLER(exit = 1.) (status in r0) sys exit EXIT(2)
| Related Man Pages |
|---|
| exit(2) - bsd |
| exit(2) - redhat |
| exit(3) - osx |
| _exit(2) - opendarwin |
| _exit(2) - netbsd |
| Similar Topics in the Unix Linux Community |
|---|
| exit a script |
| Exits from putty instead of shell script |
| confusion in use of exit 0 |
| While Loop Exiting |
| Grep for string and substitute if exits with a yes/no |