Remove outdated hammer.txt.
[dragonfly.git] / test / sysperf / syscall3.c
blob9af628a50545e597d4ed9a0d8c9e8a72e1894513
1 /*
2 * syscall3.c
4 * $DragonFly: src/test/sysperf/syscall3.c,v 1.2 2004/10/31 20:19:24 eirikn Exp $
5 */
7 #include "blib.h"
9 extern int getuid_msg(void);
11 int
12 main(int ac, char **av)
14 printf("(non timing) one process, endless loop calling getuid_msg()\n");
15 for (;;)
16 getuid_msg();
17 /* not reached */
18 return(0);