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
__aeabi_ldivmod: fix sign logic
[minix.git]
/
lib
/
libc
/
sys-minix
/
getsid.c
blob
7b8170e69a9ca1d1777a0a656943691575daab3d
1
#include <sys/cdefs.h>
2
#include
"namespace.h"
3
#include <lib.h>
4
5
#include <unistd.h>
6
#include <string.h>
7
8
pid_t
getsid
(
pid_t p
)
9
{
10
message m
;
11
12
memset
(&
m
,
0
,
sizeof
(
m
));
13
m
.
PM_GETSID_PID
=
p
;
14
return
(
_syscall
(
PM_PROC_NR
,
PM_GETSID
, &
m
));
15
}