Changed regression tests to write to /tmp instead of in the src dir.
[dragonfly.git] / test / sysperf / syscall3.c
1 /*
2  * syscall3.c
3  *
4  * $DragonFly: src/test/sysperf/syscall3.c,v 1.2 2004/10/31 20:19:24 eirikn Exp $
5  */
6
7 #include "blib.h"
8
9 extern int getuid_msg(void);
10
11 int
12 main(int ac, char **av)
13 {
14     printf("(non timing) one process, endless loop calling getuid_msg()\n");
15     for (;;) 
16         getuid_msg();
17     /* not reached */
18     return(0);
19 }
20