repo.or.cz
/
minix.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
VM: full munmap
[minix.git]
/
lib
/
libsys
/
sys_exit.c
blob
9b9b447d39067f139c721f94e8538c1b7e683383
1
#include
"syslib.h"
2
3
/*===========================================================================*
4
* sys_exit *
5
*===========================================================================*/
6
int
sys_exit
()
7
{
8
/* A system process requests to exit. */
9
message m
;
10
11
return
(
_kernel_call
(
SYS_EXIT
, &
m
));
12
}