Run the exec test for 5 seconds instead of 1 to improve measurement
[dragonfly.git] / test / sysperf / loop3.c
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.1 2003/08/12 02:29:44 dillon Exp $
7  */
8
9 #include "blib.h"
10
11 static void nop() { }
12
13 int
14 main(int ac, char **av)
15 {
16     int i;
17
18     printf("(non timing) one process, endless loop in userland\n");
19     for (;;)
20         nop();
21     return(0);
22 }
23