PIPS
benchmark.c
Go to the documentation of this file.
1 #include <unistd.h>
2 
3 
4 int benchmark(int n)
5 {
6  int i,j;
7  for (i=0;i<n;i++)
8  j=j*i*n/2;
9  return j;
10 }
11 
13 {
14  usleep(100000);
15 }
16 
17 int main()
18 {
20  return 0;
21 }
int benchmark_sleep()
Definition: benchmark.c:12
int benchmark(int n)
Definition: benchmark.c:4
int main()
Definition: benchmark.c:17