Hi,

   Another quick fix for speed benchmark to fork N threads instead of N-1 
threads. 

Regards,
Jamie Gloudon

--- a/apps/speed.c      2012-09-28 05:25:49.000000000 -0400
+++ b/apps/speed.c      2012-12-28 00:00:23.744837319 -0400
@@ -2651,7 +2651,7 @@
        static char sep[]=":";
 
        fds=malloc(multi*sizeof *fds);
-       for(n=0 ; n < multi ; ++n)
+       for(n=0 ; n <= multi ; ++n)
                {
                if (pipe(fd) == -1)
                        {

Reply via email to