repo.or.cz
/
minix3.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
make vfs & filesystems use failable copying
[minix3.git]
/
lib
/
libsys
/
srv_fork.c
blob
2ba69378ba7c1810fc721849b22e001cf79b72ce
1
#include
"syslib.h"
2
3
#include <string.h>
4
5
pid_t
6
srv_fork
(
uid_t reuid
,
gid_t regid
)
7
{
8
message m
;
9
10
memset
(&
m
,
0
,
sizeof
(
m
));
11
m
.
PM_SRV_FORK_UID
= (
int
)
reuid
;
12
m
.
PM_SRV_FORK_GID
= (
int
)
regid
;
13
return
_taskcall
(
PM_PROC_NR
,
PM_SRV_FORK
, &
m
);
14
}