xref: /dflybsd-src/test/sysperf/syscall3.c (revision 085476612a07754b8438b2c12f80a7ee1e2a4cc7)
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