The following changes since commit 36d80bc7c7f7fbc2612941b7dd7ceaf645798c7f: Wire up SIGUSR2 to kill blocking threads (2012-11-30 21:46:06 +0100) are available in the git repository at: git://git.kernel.dk/fio.git master Jens Axboe (1): Revert "Change preferred default clocksource to gettimeofday()" Steven Noonan (1): engines/net.c: fix compilation error due to missing signal.h include engines/net.c | 1 + os/os.h | 2 +- 2 files changed, 2 insertions(+), 1 deletions(-) --- Diff of recent changes: diff --git a/engines/net.c b/engines/net.c index 81e173c..edb5577 100644 --- a/engines/net.c +++ b/engines/net.c @@ -7,6 +7,7 @@ #include <stdio.h> #include <stdlib.h> #include <unistd.h> +#include <signal.h> #include <errno.h> #include <assert.h> #include <netinet/in.h> diff --git a/os/os.h b/os/os.h index 1d3a750..2e4764e 100644 --- a/os/os.h +++ b/os/os.h @@ -135,7 +135,7 @@ typedef unsigned long os_cpu_mask_t; #endif #ifndef FIO_PREFERRED_CLOCK_SOURCE -#define FIO_PREFERRED_CLOCK_SOURCE CS_GTOD +#define FIO_PREFERRED_CLOCK_SOURCE CS_CGETTIME #endif #ifndef FIO_MAX_JOBS -- To unsubscribe from this list: send the line "unsubscribe fio" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html