home *** CD-ROM | disk | FTP | other *** search
- /*
- * A quick and dirty test program. Just warms up the CPU.
- * Author: Diomidis D. Spinellis
- */
-
- volatile int q;
-
- #define proc(x,n) \
- void \
- x()\
- {\
- long i;\
- register j;\
- for (i = 0; i < n; i++)\
- for (j = 0; j < 15; j++)\
- q = j;\
- }
-
- proc(a, 10000)
- proc(b, 4000)
- proc(c, 20000)
- proc(d, 6000)
-
- void
- main(int argc, char *argv[])
- {
- prof_start(argv[0]);
-
- a();
- b();
- c();
- d();
- a();
- a();
- }
-