xref: /dragonfly/test/sysperf/syscall3.c (revision c6f73aab)
1 /*
2  * syscall3.c
3  */
4 
5 #include "blib.h"
6 
7 int
8 main(int ac, char **av)
9 {
10     printf("(non timing) one process, endless loop calling getuid()\n");
11     for (;;)
12 	getuid();
13     /* not reached */
14     return(0);
15 }
16 
17