From 40059399870da25608a6c0014d37c014550821ff Mon Sep 17 00:00:00 2001 From: Yufei Ren Date: Mon, 22 Oct 2012 21:29:37 -0400 Subject: [PATCH] Replace FIO_HAVE_RUSAGE_THREAD with RUSAGE_THREAD RUSAGE_THREAD is a more clear macro to enable getrusage() thread support. Signed-off-by: Jens Axboe --- os/os-linux.h | 5 ----- stat.c | 2 +- 2 files changed, 1 insertion(+), 6 deletions(-) diff --git a/os/os-linux.h b/os/os-linux.h index 2b35f346..9b7ff29e 100644 --- a/os/os-linux.h +++ b/os/os-linux.h @@ -14,7 +14,6 @@ #include #include #include -#include #include #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 af6e1f2e..522901a9 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); -- 2.25.1