diff options
Diffstat (limited to 'testsuite')
-rw-r--r-- | testsuite/systemtap.syscall/futimes.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/testsuite/systemtap.syscall/futimes.c b/testsuite/systemtap.syscall/futimes.c index 4b812513..08e6871f 100644 --- a/testsuite/systemtap.syscall/futimes.c +++ b/testsuite/systemtap.syscall/futimes.c @@ -5,6 +5,7 @@ #include <fcntl.h> #include <sys/syscall.h> #include <linux/utime.h> +#include <linux/version.h> #ifndef UTIME_NOW #define UTIME_NOW ((1l << 30) - 1l) @@ -47,7 +48,7 @@ int main() //staptest// futimesat (AT_FDCWD, "foobar", \[1000000000.001234\]\[2000000000.005678\]) #endif /* __NR_futimesat */ -#ifdef __NR_utimensat +#if defined(__NR_utimensat) && LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,22) ts[0].tv_sec = 1000000000; ts[0].tv_nsec = 123456789; ts[1].tv_sec = 2000000000; |