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
drm - Fix memory leak in broadwell or later GPUs
[dragonfly.git]
/
test
/
sysperf
/
syscall3.c
blob
04f9dc9d1380602b8b0a95981c84d9823fe085d9
1
/*
2
* syscall3.c
3
*/
4
5
#include
"blib.h"
6
7
int
8
main
(
int
ac
,
char
**
av
)
9
{
10
printf
(
"(non timing) one process, endless loop calling getuid()
\n
"
);
11
for
(;;)
12
getuid
();
13
/* not reached */
14
return
(
0
);
15
}
16