Convert to use vop_write_direntry,
[dragonfly.git] / test / sysperf / loop3.c
blobdd4d8eebd534ef44c4de719716902ab44cf02a79
1 /*
2 * loop3.c
4 * used as a helper to test AST delivery. This is an endless loop.
6 * $DragonFly: src/test/sysperf/loop3.c,v 1.1 2003/08/12 02:29:44 dillon Exp $
7 */
9 #include "blib.h"
11 static void nop() { }
13 int
14 main(int ac, char **av)
16 int i;
18 printf("(non timing) one process, endless loop in userland\n");
19 for (;;)
20 nop();
21 return(0);