Flashnux

GNU/Linux man pages

Livre :
Expressions régulières,
Syntaxe et mise en oeuvre :

ISBN : 978-2-7460-9712-4
EAN : 9782746097124
(Editions ENI)

Unix

Unix v6

exit(2)



exit terminate process (exit = 1.)
(status in r0)
sys exit exit(status)
int status;
is the normal means of terminating a process. closes all the process’s files and notifies the parent process if it is executing a The low byte of r0 (resp. the argument to exit) is available as status to the parent process. This call can never return. wait (II) None.



exit(2)