Remove /* within block comment.
[dragonfly/netmp.git] / test / sysperf / loop3.c
blobc70fb80c3ed945c6fdab9a839ff589eb1ec4db03
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.2 2006/04/22 22:32:52 dillon Exp $
7 */
9 #include "blib.h"
11 int
12 main(int ac, char **av)
14 int i;
16 printf("(non timing) one process, endless loop in userland\n");
17 for (;;)
18 nop();
19 return(0);