We should use the standard methods for getting the number of cpus in the system when they are available. It is good practice to leave the old ways in place for people stuck on older systems. Cc: Jens Axboe <axboe@xxxxxxxxx> Signed-off-by: Nathan Zimmer <nzimmer@xxxxxxx> --- btreplay/btreplay.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/btreplay/btreplay.c b/btreplay/btreplay.c index 6f0ba63..fe6cd80 100644 --- a/btreplay/btreplay.c +++ b/btreplay/btreplay.c @@ -502,6 +502,9 @@ static inline void start_iter(void) */ static void get_ncpus(void) { +#ifdef _SC_NPROCESSORS_CONF + ncpus = sysconf(_SC_NPROCESSORS_CONF); +#else long last_cpu; cpu_set_t cpus; @@ -515,6 +518,7 @@ static void get_ncpus(void) if (CPU_ISSET( last_cpu, &cpus) ) ncpus = last_cpu; ncpus++; +#endif if (ncpus == 0) { fatal(NULL, ERR_SYSCALL, "Insufficient number of CPUs\n"); /*NOTREACHED*/ -- 1.8.1.2 -- To unsubscribe from this list: send the line "unsubscribe linux-btrace" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html