From: Tom Hughes Date: Wed, 11 Jul 2012 15:38:29 +0000 (+0000) Subject: Wire up four more system calls on arm, based on patch X-Git-Tag: svn/VALGRIND_3_8_0~137 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0c6ef6849414d40be6c254bf8c3467e895b6254f;p=thirdparty%2Fvalgrind.git Wire up four more system calls on arm, based on patch from William Cohen. Fixes BZ#295617. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@12731 --- diff --git a/coregrind/m_syswrap/syswrap-arm-linux.c b/coregrind/m_syswrap/syswrap-arm-linux.c index 81a2e145e1..c7cdeefdc6 100644 --- a/coregrind/m_syswrap/syswrap-arm-linux.c +++ b/coregrind/m_syswrap/syswrap-arm-linux.c @@ -1888,6 +1888,10 @@ static SyscallTableEntry syscall_main_table[] = { LINXY(__NR_dup3, sys_dup3), // 358 LINXY(__NR_pipe2, sys_pipe2), // 359 LINXY(__NR_inotify_init1, sys_inotify_init1), // 360 + LINXY(__NR_preadv, sys_preadv), // 361 + LINX_(__NR_pwritev, sys_pwritev), // 362 + LINXY(__NR_rt_tgsigqueueinfo, sys_rt_tgsigqueueinfo),// 363 + LINXY(__NR_perf_event_open, sys_perf_event_open), // 364 PLAXY(__NR_accept4, sys_accept4) // 366 };