Commit b7bf79cc authored by Richard Henderson's avatar Richard Henderson Committed by Laurent Vivier
Browse files

linux-user/alpha: Fix epoll syscalls



These were named incorrectly, going so far as to invade strace.list.

Signed-off-by: default avatarRichard Henderson <richard.henderson@linaro.org>
Reviewed-by: default avatarLaurent Vivier <laurent@vivier.eu>
Message-Id: <20180607184844.30126-2-richard.henderson@linaro.org>
[lv: replace tabs by spaces]
Signed-off-by: default avatarLaurent Vivier <laurent@vivier.eu>
parent daf238dc
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -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
+0 −9
Original line number Diff line number Diff line
@@ -1467,15 +1467,6 @@
#ifdef TARGET_NR__sysctl
{ TARGET_NR__sysctl, "_sysctl" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_sys_epoll_create
{ TARGET_NR_sys_epoll_create, "sys_epoll_create" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_sys_epoll_ctl
{ TARGET_NR_sys_epoll_ctl, "sys_epoll_ctl" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_sys_epoll_wait
{ TARGET_NR_sys_epoll_wait, "sys_epoll_wait" , NULL, NULL, NULL },
#endif
#ifdef TARGET_NR_sysfs
{ TARGET_NR_sysfs, "sysfs" , NULL, NULL, NULL },
#endif