From: Julian Seward Date: Sun, 3 Jan 2010 11:46:50 +0000 (+0000) Subject: arm-linux: handle sys_signalfd4 and sys_eventfd2. Makes X-Git-Tag: svn/VALGRIND_3_6_0~427 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=cc732d641a2b2cee1c95be73b4b7ce07c40dd62a;p=thirdparty%2Fvalgrind.git arm-linux: handle sys_signalfd4 and sys_eventfd2. Makes memcheck/tests/linux-syscalls-2007 succeed on this platform. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@10996 --- diff --git a/coregrind/m_syswrap/syswrap-arm-linux.c b/coregrind/m_syswrap/syswrap-arm-linux.c index 86d9f21b61..48e209321c 100644 --- a/coregrind/m_syswrap/syswrap-arm-linux.c +++ b/coregrind/m_syswrap/syswrap-arm-linux.c @@ -1673,6 +1673,10 @@ static SyscallTableEntry syscall_main_table[] = { // 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 };