|
From: <sv...@va...> - 2010-08-22 12:09:07
|
Author: sewardj
Date: 2010-08-22 13:08:59 +0100 (Sun, 22 Aug 2010)
New Revision: 11280
Log:
Merge from branches/THUMB: add support for sys_pselect6, sys_pipe2,
sys_inotify_init1 on arm-linux.
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 2010-08-22 12:03:45 UTC (rev 11279)
+++ trunk/coregrind/m_syswrap/syswrap-arm-linux.c 2010-08-22 12:08:59 UTC (rev 11280)
@@ -1657,10 +1657,13 @@
// correspond to what's in include/vki/vki-scnums-arm-linux.h.
// From here onwards, please ensure the numbers are correct.
+ LINX_(__NR_pselect6, sys_pselect6), // 335
+
LINXY(__NR_signalfd4, sys_signalfd4), // 355
LINX_(__NR_eventfd2, sys_eventfd2), // 356
- LINXY(__NR_pipe2, sys_pipe2) // 359
+ LINXY(__NR_pipe2, sys_pipe2), // 359
+ LINXY(__NR_inotify_init1, sys_inotify_init1) // 360
};
Modified: trunk/include/vki/vki-scnums-arm-linux.h
===================================================================
--- trunk/include/vki/vki-scnums-arm-linux.h 2010-08-22 12:03:45 UTC (rev 11279)
+++ trunk/include/vki/vki-scnums-arm-linux.h 2010-08-22 12:08:59 UTC (rev 11280)
@@ -370,7 +370,7 @@
#define __NR_readlinkat 332
#define __NR_fchmodat 333
#define __NR_faccessat 334
- /* 335 for pselect6 */
+#define __NR_pselect6 335 /* JRS 20100812: is this correct? */
/* 336 for ppoll */
#define __NR_unshare 337
#define __NR_set_robust_list 338
|