summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorTimothy Baldwin <T.E.Baldwin99@members.leeds.ac.uk>2015-04-08 21:40:52 +0100
committerPeter Maydell <peter.maydell@linaro.org>2015-05-18 17:45:10 +0100
commitd82322e175d58c0c8951cbc905da1ca9ee2e008c (patch)
tree983800c5613617190f98eb4dcc288738c5d92e79
parent082587b741efc5329380b4a156d86f2bdbfa2d70 (diff)
downloadfocaccia-qemu-d82322e175d58c0c8951cbc905da1ca9ee2e008c.tar.gz
focaccia-qemu-d82322e175d58c0c8951cbc905da1ca9ee2e008c.zip
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 <T.E.Baldwin99@members.leeds.ac.uk>
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
-rw-r--r--linux-user/arm/syscall_nr.h2
1 files changed, 1 insertions, 1 deletions
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)