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
Convert to use vop_write_direntry,
[dragonfly.git]
/
test
/
sysperf
/
syscall3.c
blob
9af628a50545e597d4ed9a0d8c9e8a72e1894513
1
/*
2
* syscall3.c
3
*
4
* $DragonFly: src/test/sysperf/syscall3.c,v 1.2 2004/10/31 20:19:24 eirikn Exp $
5
*/
6
7
#include
"blib.h"
8
9
extern
int
getuid_msg
(
void
);
10
11
int
12
main
(
int
ac
,
char
**
av
)
13
{
14
printf
(
"(non timing) one process, endless loop calling getuid_msg()
\n
"
);
15
for
(;;)
16
getuid_msg
();
17
/* not reached */
18
return
(
0
);
19
}
20