Remove trailing whitespace.
[dragonfly/vkernel-mp.git] / test / sysperf / call1.c
blobaeb01ec7ee1cf65657e5676734a54c09476a29b9
1 /*
2 * call1.c
4 * Test a standard function call to a function which does nothing much.
6 * $DragonFly: src/test/sysperf/call1.c,v 1.1 2004/03/20 02:51:01 dillon Exp $
7 */
9 #include "blib.h"
11 #define LOOP 1000000000
13 static void nop() { }
15 int
16 main(int ac, char **av)
18 int i;
20 printf("call nop() function in loop\n");
21 start_timing();
22 for (i = 0; i < LOOP; ++i)
23 nop();
24 stop_timing(LOOP, "loop1/user");
25 return(0);