From d82322e175d58c0c8951cbc905da1ca9ee2e008c Mon Sep 17 00:00:00 2001 From: Timothy Baldwin Date: Wed, 8 Apr 2015 21:40:52 +0100 Subject: linux-user/arm: Correct TARGET_NR_timerfd to TARGET_NR_timerfd_create Misspelled system call name in macro was causing timerfd_create not to be supported for the ARM target. Signed-off-by: Timothy Edward Baldwin Reviewed-by: Peter Maydell Signed-off-by: Peter Maydell --- linux-user/arm/syscall_nr.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'linux-user') diff --git a/linux-user/arm/syscall_nr.h b/linux-user/arm/syscall_nr.h index 7d7be7cfe9..53552beabf 100644 --- a/linux-user/arm/syscall_nr.h +++ b/linux-user/arm/syscall_nr.h @@ -354,7 +354,7 @@ #define TARGET_NR_kexec_load (347) #define TARGET_NR_utimensat (348) #define TARGET_NR_signalfd (349) -#define TARGET_NR_timerfd (350) +#define TARGET_NR_timerfd_create (350) #define TARGET_NR_eventfd (351) #define TARGET_NR_fallocate (352) #define TARGET_NR_timerfd_settime (353) -- cgit v1.2.1