xref: /dragonfly/test/sysperf/syscall3.c (revision 2cd2d2b5)
1 /*
2  * syscall3.c
3  *
4  * $DragonFly: src/test/sysperf/syscall3.c,v 1.1 2003/08/12 02:29:44 dillon Exp $
5  */
6 
7 #include "blib.h"
8 
9 int
10 main(int ac, char **av)
11 {
12     printf("(non timing) one process, endless loop calling getuid_msg()\n");
13     for (;;)
14 	getuid();
15     /* not reached */
16     return(0);
17 }
18 
19