mirror of https://github.com/xemu-project/xemu.git
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>
This commit is contained in:
parent
daf238dcd5
commit
b7bf79ccdd
|
@ -343,9 +343,9 @@
|
||||||
#define TARGET_NR_io_cancel 402
|
#define TARGET_NR_io_cancel 402
|
||||||
#define TARGET_NR_exit_group 405
|
#define TARGET_NR_exit_group 405
|
||||||
#define TARGET_NR_lookup_dcookie 406
|
#define TARGET_NR_lookup_dcookie 406
|
||||||
#define TARGET_NR_sys_epoll_create 407
|
#define TARGET_NR_epoll_create 407
|
||||||
#define TARGET_NR_sys_epoll_ctl 408
|
#define TARGET_NR_epoll_ctl 408
|
||||||
#define TARGET_NR_sys_epoll_wait 409
|
#define TARGET_NR_epoll_wait 409
|
||||||
#define TARGET_NR_remap_file_pages 410
|
#define TARGET_NR_remap_file_pages 410
|
||||||
#define TARGET_NR_set_tid_address 411
|
#define TARGET_NR_set_tid_address 411
|
||||||
#define TARGET_NR_restart_syscall 412
|
#define TARGET_NR_restart_syscall 412
|
||||||
|
|
|
@ -1467,15 +1467,6 @@
|
||||||
#ifdef TARGET_NR__sysctl
|
#ifdef TARGET_NR__sysctl
|
||||||
{ TARGET_NR__sysctl, "_sysctl" , NULL, NULL, NULL },
|
{ TARGET_NR__sysctl, "_sysctl" , NULL, NULL, NULL },
|
||||||
#endif
|
#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
|
#ifdef TARGET_NR_sysfs
|
||||||
{ TARGET_NR_sysfs, "sysfs" , NULL, NULL, NULL },
|
{ TARGET_NR_sysfs, "sysfs" , NULL, NULL, NULL },
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in New Issue