From: Yufei Ren <renyufei83@xxxxxxxxx> RUSAGE_THREAD is a more clear macro to enable getrusage() thread support. --- os/os-linux.h | 5 ----- stat.c | 2 +- 2 files changed, 1 insertions(+), 6 deletions(-) diff --git a/os/os-linux.h b/os/os-linux.h index 2b35f34..9b7ff29 100644 --- a/os/os-linux.h +++ b/os/os-linux.h @@ -14,7 +14,6 @@ #include <linux/unistd.h> #include <linux/raw.h> #include <linux/major.h> -#include <linux/version.h> #include <endian.h> #include "indirect.h" @@ -63,10 +62,6 @@ #define FIO_HAVE_FALLOC_ENG #endif -#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,26) -#define FIO_HAVE_RUSAGE_THREAD -#endif - #ifdef SYNC_FILE_RANGE_WAIT_BEFORE #define FIO_HAVE_SYNC_FILE_RANGE #endif diff --git a/stat.c b/stat.c index af6e1f2..522901a 100644 --- a/stat.c +++ b/stat.c @@ -16,7 +16,7 @@ void update_rusage_stat(struct thread_data *td) { struct thread_stat *ts = &td->ts; -#ifdef FIO_HAVE_RUSAGE_THREAD +#ifdef RUSAGE_THREAD getrusage(RUSAGE_THREAD, &td->ru_end); #else getrusage(RUSAGE_SELF, &td->ru_end); -- 1.7.2.3 -- 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