repo.or.cz
/
dragonfly.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
kernel - Reenable acpi sleep states
[dragonfly.git]
/
test
/
sysperf
/
getuid_msg.c
blob
ac5f29cc37b736b9dc200028d674def6e856d72d
1
/*
2
* getuid_msg.c
3
*
4
* $DragonFly: src/test/sysperf/getuid_msg.c,v 1.3 2004/10/31 20:19:23 eirikn Exp $
5
*/
6
7
#include
"../sysmsg/syscall.h"
8
9
int
10
getuid_msg
(
void
)
11
{
12
struct
getuid_args getuidmsg
;
13
int
error
;
14
15
INITMSGSYSCALL
(
getuid
,
0
);
16
DOMSGSYSCALL
(
getuid
);
17
FINISHMSGSYSCALL
(
getuid
,
error
);
18
}
19