I noticed that hackbench returns a random status in $? ... it's because
there's a couple of lines missing from the original.

In ./testcases/kernel/sched/cfs-scheduler/hackbench.c, the last lines
are:


        /* Reap them all */
        for (i = 0; i < total_children; i++)
                reap_worker(pth_tab[i]);

        gettimeofday(&stop, NULL);

        /* Print time... */
        timersub(&stop, &start, &diff);
}

The original (from
http://people.redhat.com/mingo/cfs-scheduler/tools/hackbench.c) has this:

        /* Reap them all */
        for (i = 0; i < total_children; i++)
                reap_worker(pth_tab[i]);

        gettimeofday(&stop, NULL);

        /* Print time... */
        timersub(&stop, &start, &diff);
        printf("Time: %lu.%03lu\n", diff.tv_sec, diff.tv_usec/1000);
        exit(0);
}


-- 
Bob Hepple <[EMAIL PROTECTED]>
ph: 07-5584-5908 Fx: 07-5575-9550

-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
_______________________________________________
Ltp-list mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/ltp-list

Reply via email to