Commit 4b627a23 authored by Riku Voipio's avatar Riku Voipio Committed by Riku Voipio
Browse files

linux-user: update syscall list



In preparation for supporting pipe2()

Signed-off-by: default avatarRiku Voipio <riku.voipio@iki.fi>
parent c4d2302e
Loading
Loading
Loading
Loading
+9 −0
Original line number Diff line number Diff line
@@ -356,3 +356,12 @@
#define TARGET_NR_signalfd			(349)
#define TARGET_NR_timerfd			(350)
#define TARGET_NR_eventfd			(351)
#define TARGET_NR_fallocate			(352)
#define TARGET_NR_timerfd_settime		(353)
#define TARGET_NR_timerfd_gettime		(354)
#define TARGET_NR_signalfd4			(355)
#define TARGET_NR_eventfd2			(356)
#define TARGET_NR_epoll_create1		(357)
#define TARGET_NR_dup3				(358)
#define TARGET_NR_pipe2			(359)
#define TARGET_NR_inotify_init1		(360)
+8 −0
Original line number Diff line number Diff line
@@ -327,3 +327,11 @@
#define TARGET_NR_timerfd		322
#define TARGET_NR_eventfd		323
#define TARGET_NR_fallocate		324
#define TARGET_NR_timerfd_settime	325
#define TARGET_NR_timerfd_gettime	326
#define TARGET_NR_signalfd4		327
#define TARGET_NR_eventfd2		328
#define TARGET_NR_epoll_create1	329
#define TARGET_NR_dup3			330
#define TARGET_NR_pipe2		331
#define TARGET_NR_inotify_init1	332
+8 −0
Original line number Diff line number Diff line
@@ -320,3 +320,11 @@
#define TARGET_NR_timerfd		318
#define TARGET_NR_eventfd		319
#define TARGET_NR_fallocate		320
#define TARGET_NR_timerfd_settime	321
#define TARGET_NR_timerfd_gettime	322
#define TARGET_NR_signalfd4		323
#define TARGET_NR_eventfd2		324
#define TARGET_NR_epoll_create1	325
#define TARGET_NR_dup3			326
#define TARGET_NR_pipe2		327
#define TARGET_NR_inotify_init1	328
+9 −0
Original line number Diff line number Diff line
@@ -323,3 +323,12 @@
#define TARGET_NR_timerfd		(TARGET_NR_Linux + 318)
#define TARGET_NR_eventfd		(TARGET_NR_Linux + 319)
#define TARGET_NR_fallocate		(TARGET_NR_Linux + 320)
#define TARGET_NR_timerfd_create	(TARGET_NR_Linux + 321)
#define TARGET_NR_timerfd_gettime	(TARGET_NR_Linux + 322)
#define TARGET_NR_timerfd_settime	(TARGET_NR_Linux + 323)
#define TARGET_NR_signalfd4		(TARGET_NR_Linux + 324)
#define TARGET_NR_eventfd2		(TARGET_NR_Linux + 325)
#define TARGET_NR_epoll_create1	(TARGET_NR_Linux + 326)
#define TARGET_NR_dup3			(TARGET_NR_Linux + 327)
#define TARGET_NR_pipe2		(TARGET_NR_Linux + 328)
#define TARGET_NR_inotify_init1	(TARGET_NR_Linux + 329)
+9 −0
Original line number Diff line number Diff line
@@ -282,3 +282,12 @@
#define TARGET_NR_timerfd			(TARGET_NR_Linux + 277)
#define TARGET_NR_eventfd			(TARGET_NR_Linux + 278)
#define TARGET_NR_fallocate			(TARGET_NR_Linux + 279)
#define TARGET_NR_timerfd_create		(TARGET_NR_Linux + 280)
#define TARGET_NR_timerfd_gettime		(TARGET_NR_Linux + 281)
#define TARGET_NR_timerfd_settime		(TARGET_NR_Linux + 282)
#define TARGET_NR_signalfd4			(TARGET_NR_Linux + 283)
#define TARGET_NR_eventfd2			(TARGET_NR_Linux + 284)
#define TARGET_NR_epoll_create1		(TARGET_NR_Linux + 285)
#define TARGET_NR_dup3				(TARGET_NR_Linux + 286)
#define TARGET_NR_pipe2			(TARGET_NR_Linux + 287)
#define TARGET_NR_inotify_init1		(TARGET_NR_Linux + 288)
Loading