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
isblank() implementation.
[minix.git]
/
lib
/
libc
/
posix
/
_setsid.c
blob
9e9127381e71c2806d437305d33f246f23c5e9a0
1
#include <lib.h>
2
#define setsid _setsid
3
#include <unistd.h>
4
5
PUBLIC pid_t
setsid
()
6
{
7
message m
;
8
9
return
(
_syscall
(
MM
,
SETSID
, &
m
));
10
}