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 22