summaryrefslogtreecommitdiff
path: root/ztspeed.c
blob: 7b41d786a9040f13aedf2ef56da5e71d54c69563 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
/*
 * 
 * Generic speed test -- Run an infinite loop and
 * see how high we can count (in 5 seconds).  You 
 * can use this to measure how much CPU zaptel REALLY 
 * is taking.
 * 
 * MUST BE COMPILED WITHOUT OPTIMIZATION
 *
 */

#include <stdio.h>
#include <sys/signal.h>
#include <unistd.h>
#include <stdlib.h>

static long count=0;

static void alm(int sig)
{
	printf("Count: %ld\n", count);
	exit(0);
}


int main(int argc, char *argv[])
{
	int a=0,b=0,c;
	signal(SIGALRM, alm);
	alarm(5);
	for (;;) {
		for (c=0;c<1000;c++)
			a = a * b;
		count++;
	}
}