Re: i387 floating-point test program/benchmark

2005-08-03 Thread Jan Engelhardt
> > Among other issues. > > Therefore: add_tail(spare_time_Q); > > oddball:davidsen> cc -o i387bench -Os i387_bench.c > i387_bench.c:27: parse error before `cpuset' > i387_bench.c:27: warning: data definition has no type or storage class This looks like an "old" glibc that does not have cpuset

Re: i387 floating-point test program/benchmark

2005-08-03 Thread Jan Engelhardt
Among other issues. Therefore: add_tail(spare_time_Q); oddball:davidsen cc -o i387bench -Os i387_bench.c i387_bench.c:27: parse error before `cpuset' i387_bench.c:27: warning: data definition has no type or storage class This looks like an old glibc that does not have cpuset yet.

Re: i387 floating-point test program/benchmark

2005-08-02 Thread Bill Davidsen
Dave Jones wrote: On Fri, Jul 29, 2005 at 04:36:05PM -0400, Chuck Ebbert wrote: > memset(, sizeof(cpuset), 0); This bug is like a disease, I swear. (swapped args) Among other issues. Therefore: add_tail(spare_time_Q); oddball:davidsen> cc -o i387bench -Os i387_bench.c

Re: i387 floating-point test program/benchmark

2005-08-02 Thread Bill Davidsen
Dave Jones wrote: On Fri, Jul 29, 2005 at 04:36:05PM -0400, Chuck Ebbert wrote: memset(cpuset, sizeof(cpuset), 0); This bug is like a disease, I swear. (swapped args) Among other issues. Therefore: add_tail(spare_time_Q); oddball:davidsen cc -o i387bench -Os

Re: i387 floating-point test program/benchmark

2005-07-29 Thread Con Kolivas
On Sat, 30 Jul 2005 10:15, Puneet Vyas wrote: > Chuck Ebbert wrote: > >/* fp.c: i387 benchmark/test program */ > > [EMAIL PROTECTED] C]$ cc FPUtest.c -o FPUtest > > FPUtest.c: In function `main': > > FPUtest.c:103: warning: passing arg 2 of `sched_setaffinity' makes > integer from pointer without

Re: i387 floating-point test program/benchmark

2005-07-29 Thread Puneet Vyas
Chuck Ebbert wrote: /* fp.c: i387 benchmark/test program */ [EMAIL PROTECTED] C]$ cc FPUtest.c -o FPUtest FPUtest.c: In function `main': FPUtest.c:103: warning: passing arg 2 of `sched_setaffinity' makes integer from pointer without a cast FPUtest.c:103: error: too few arguments to

Re: i387 floating-point test program/benchmark

2005-07-29 Thread Dave Jones
On Fri, Jul 29, 2005 at 04:36:05PM -0400, Chuck Ebbert wrote: > memset(, sizeof(cpuset), 0); This bug is like a disease, I swear. (swapped args) Dave - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to

i387 floating-point test program/benchmark

2005-07-29 Thread Chuck Ebbert
/* fp.c: i387 benchmark/test program */ #define FP_VERSION "0.10" #define _GNU_SOURCE #include #include #include #include #include #include #include #include #define COND_YIELD(iters, ctr) \ if ((iters) > 0 && ++(ctr) > (iters)) { \ (ctr) = 0;

i387 floating-point test program/benchmark

2005-07-29 Thread Chuck Ebbert
/* fp.c: i387 benchmark/test program */ #define FP_VERSION 0.10 #define _GNU_SOURCE #include sys/types.h #include sys/wait.h #include string.h #include stdlib.h #include unistd.h #include stdio.h #include signal.h #include sched.h #define COND_YIELD(iters, ctr) \ if

Re: i387 floating-point test program/benchmark

2005-07-29 Thread Dave Jones
On Fri, Jul 29, 2005 at 04:36:05PM -0400, Chuck Ebbert wrote: memset(cpuset, sizeof(cpuset), 0); This bug is like a disease, I swear. (swapped args) Dave - To unsubscribe from this list: send the line unsubscribe linux-kernel in the body of a message to

Re: i387 floating-point test program/benchmark

2005-07-29 Thread Con Kolivas
On Sat, 30 Jul 2005 10:15, Puneet Vyas wrote: Chuck Ebbert wrote: /* fp.c: i387 benchmark/test program */ [EMAIL PROTECTED] C]$ cc FPUtest.c -o FPUtest FPUtest.c: In function `main': FPUtest.c:103: warning: passing arg 2 of `sched_setaffinity' makes integer from pointer without a cast