|
From: <sv...@va...> - 2011-10-20 13:05:19
|
Author: sewardj
Date: 2011-10-20 14:00:32 +0100 (Thu, 20 Oct 2011)
New Revision: 12177
Log:
Enable sys_epoll_pwait on arm-linux. #283427. Derived from
larger patch by John Reiser (jr...@bi...).
Modified:
trunk/coregrind/m_syswrap/syswrap-arm-linux.c
trunk/include/vki/vki-scnums-arm-linux.h
Modified: trunk/coregrind/m_syswrap/syswrap-arm-linux.c
===================================================================
--- trunk/coregrind/m_syswrap/syswrap-arm-linux.c 2011-10-20 12:43:16 UTC (rev 12176)
+++ trunk/coregrind/m_syswrap/syswrap-arm-linux.c 2011-10-20 13:00:32 UTC (rev 12177)
@@ -1784,7 +1784,6 @@
// LINX_(__NR_vmsplice, sys_ni_syscall), // 316
// LINX_(__NR_move_pages, sys_ni_syscall), // 317
// LINX_(__NR_getcpu, sys_ni_syscall), // 318
-// LINXY(__NR_epoll_pwait, sys_epoll_pwait), // 319
LINX_(__NR_utimensat, sys_utimensat), // 320
LINXY(__NR_signalfd, sys_signalfd), // 321
@@ -1806,6 +1805,8 @@
LINX_(__NR_pselect6, sys_pselect6), // 335
LINXY(__NR_ppoll, sys_ppoll), // 336
+ LINXY(__NR_epoll_pwait, sys_epoll_pwait), // 346
+
LINXY(__NR_signalfd4, sys_signalfd4), // 355
LINX_(__NR_eventfd2, sys_eventfd2), // 356
Modified: trunk/include/vki/vki-scnums-arm-linux.h
===================================================================
--- trunk/include/vki/vki-scnums-arm-linux.h 2011-10-20 12:43:16 UTC (rev 12176)
+++ trunk/include/vki/vki-scnums-arm-linux.h 2011-10-20 13:00:32 UTC (rev 12177)
@@ -382,7 +382,7 @@
#define __NR_vmsplice 343
#define __NR_move_pages 344
#define __NR_getcpu 345
- /* 346 for epoll_pwait */
+#define __NR_epoll_pwait 346
#define __NR_kexec_load 347
#define __NR_utimensat 348
#define __NR_signalfd 349
|