|
From: <sv...@va...> - 2010-01-03 11:47:01
|
Author: sewardj
Date: 2010-01-03 11:46:50 +0000 (Sun, 03 Jan 2010)
New Revision: 10996
Log:
arm-linux: handle sys_signalfd4 and sys_eventfd2. Makes
memcheck/tests/linux-syscalls-2007 succeed on this platform.
Modified:
trunk/coregrind/m_syswrap/syswrap-arm-linux.c
Modified: trunk/coregrind/m_syswrap/syswrap-arm-linux.c
===================================================================
--- trunk/coregrind/m_syswrap/syswrap-arm-linux.c 2010-01-03 11:39:01 UTC (rev 10995)
+++ trunk/coregrind/m_syswrap/syswrap-arm-linux.c 2010-01-03 11:46:50 UTC (rev 10996)
@@ -1673,6 +1673,10 @@
// verbatim from syswrap-x86-linux.c and they certainly do not
// correspond to what's in include/vki/vki-scnums-arm-linux.h.
// From here onwards, please ensure the numbers are correct.
+
+ LINXY(__NR_signalfd4, sys_signalfd4), // 355
+ LINX_(__NR_eventfd2, sys_eventfd2), // 356
+
LINXY(__NR_pipe2, sys_pipe2) // 359
};
|