[PATCH] compat.h: Add CLOCK_BOOTTIME.
Vinson Lee <[email protected]> Wed, 20 May 2015 14:15:04 -0700
| Newsgroups | org.kernel.vger.trinity |
|---|---|
| Message-ID | <[email protected]> |
From: Vinson Lee <[email protected]> CLOCK_BOOTTIME is not available with glibc < 2.14. Fix build on CentOS 6. CC syscalls/perf_event_open.o syscalls/perf_event_open.c: In function ‘create_mostly_valid_sampling_event’: syscalls/perf_event_open.c:1118: error: ‘CLOCK_BOOTTIME’ undeclared (first use in this function) syscalls/perf_event_open.c:1118: error: (Each undeclared identifier is reported only once syscalls/perf_event_open.c:1118: error: for each function it appears in.) Signed-off-by: Vinson Lee <[email protected]> --- include/compat.h | 5 +++++ 1 files changed, 5 insertions(+), 0 deletions(-) diff --git a/include/compat.h b/include/compat.h index c0c7f0a..0e3d011 100644 --- a/include/compat.h +++ b/include/compat.h @@ -997,3 +997,8 @@ struct kvm_get_htab_fd { #ifndef EPOLLWAKEUP #define EPOLLWAKEUP (1u << 29) #endif + +/* time.h */ +#ifndef CLOCK_BOOTTIME +#define CLOCK_BOOTTIME 7 +#endif -- 1.7.1