mirror of
https://gitlab.com/qemu-project/qemu
synced 2024-11-05 20:35:44 +00:00
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>
This commit is contained in:
parent
082587b741
commit
d82322e175
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue