repo.or.cz
/
dragonfly
/
vkernel-mp.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
More minor IPI work.
[dragonfly/vkernel-mp.git]
/
test
/
sysperf
/
loop3.c
blob
fb6e8ab0619b7c1bd26c514a95ca3028b8c6bdbf
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/23 00: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