diff options
| author | Richard Henderson | 2018-06-07 20:48:41 +0200 |
|---|---|---|
| committer | Laurent Vivier | 2018-06-11 14:44:22 +0200 |
| commit | b7bf79ccddcf9fec49da0536bfd23093a929056a (patch) | |
| tree | 7c67d18df13abb0372b577a7dc6f1a976d604a1f /linux-user/alpha | |
| parent | qemu-binfmt-conf.sh: ignore the OS/ABI field (diff) | |
| download | qemu-b7bf79ccddcf9fec49da0536bfd23093a929056a.tar.gz qemu-b7bf79ccddcf9fec49da0536bfd23093a929056a.tar.xz qemu-b7bf79ccddcf9fec49da0536bfd23093a929056a.zip | |
linux-user/alpha: Fix epoll syscalls
These were named incorrectly, going so far as to invade strace.list.
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Reviewed-by: Laurent Vivier <laurent@vivier.eu>
Message-Id: <20180607184844.30126-2-richard.henderson@linaro.org>
[lv: replace tabs by spaces]
Signed-off-by: Laurent Vivier <laurent@vivier.eu>
Diffstat (limited to 'linux-user/alpha')
| -rw-r--r-- | linux-user/alpha/syscall_nr.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/linux-user/alpha/syscall_nr.h b/linux-user/alpha/syscall_nr.h index 00e14bb6b3..fbb1ed288b 100644 --- a/linux-user/alpha/syscall_nr.h +++ b/linux-user/alpha/syscall_nr.h @@ -343,9 +343,9 @@ #define TARGET_NR_io_cancel 402 #define TARGET_NR_exit_group 405 #define TARGET_NR_lookup_dcookie 406 -#define TARGET_NR_sys_epoll_create 407 -#define TARGET_NR_sys_epoll_ctl 408 -#define TARGET_NR_sys_epoll_wait 409 +#define TARGET_NR_epoll_create 407 +#define TARGET_NR_epoll_ctl 408 +#define TARGET_NR_epoll_wait 409 #define TARGET_NR_remap_file_pages 410 #define TARGET_NR_set_tid_address 411 #define TARGET_NR_restart_syscall 412 |
