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 - Improve VM fault performance for sequential access
[dragonfly.git]
/
test
/
sysperf
/
loop3.c
blob
c70fb80c3ed945c6fdab9a839ff589eb1ec4db03
1
/*
2
* loop3.c
3
*
4
* used as a helper to test AST delivery. This is an endless loop.
5
*
6
* $DragonFly: src/test/sysperf/loop3.c,v 1.2 2006/04/22 22:32:52 dillon Exp $
7
*/
8
9
#include
"blib.h"
10
11
int
12
main
(
int
ac
,
char
**
av
)
13
{
14
int
i
;
15
16
printf
(
"(non timing) one process, endless loop in userland
\n
"
);
17
for
(;;)
18
nop
();
19
return
(
0
);
20
}
21