xref: /dragonfly/test/sysperf/call1.c (revision 86d7f5d3)
1 /*
2  * call1.c
3  *
4  * Test a standard function call to a function which does nothing much.
5  *
6  * $DragonFly: src/test/sysperf/call1.c,v 1.1 2004/03/20 01:51:01 dillon Exp $
7  */
8 
9 #include "blib.h"
10 
11 #define LOOP 1000000000
12 
13 int
main(int ac,char ** av)14 main(int ac, char **av)
15 {
16     int i;
17 
18     printf("call nop() function in loop\n");
19     start_timing();
20     for (i = 0; i < LOOP; ++i)
21 	nop();
22     stop_timing(LOOP, "loop1/user");
23     return(0);
24 }
25 
26