From 04f8bc3793e5a618a167d85263ba0e98c6ec950a Mon Sep 17 00:00:00 2001 From: Mark Wielaard Date: Wed, 22 Apr 2015 15:29:03 +0000 Subject: [PATCH] Enable rt_sigpending syscall on ppc64 linux. Patch from Thomas Huth git-svn-id: svn://svn.valgrind.org/valgrind/trunk@15133 --- NEWS | 1 + coregrind/m_syswrap/syswrap-ppc64-linux.c | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/NEWS b/NEWS index ed15b978f6..fff22b9684 100644 --- a/NEWS +++ b/NEWS @@ -162,6 +162,7 @@ n-i-bz (vex 3098) Avoid generation of Neon insns on non-Neon hosts 346267 Fix compiler warning about casting arguments, ppc64. 346324 Add support for the ppc instructions lbarx, lharx, stbcs, sthcs 346416 Add support for LL_IOC_PATH2FID and LL_IOC_GETPARENT Lustre ioctls +n-i-bz Enable rt_sigpending syscall on ppc64 linux. Release 3.10.1 (25 November 2014) diff --git a/coregrind/m_syswrap/syswrap-ppc64-linux.c b/coregrind/m_syswrap/syswrap-ppc64-linux.c index ba4116d474..6f3c1f7c8c 100644 --- a/coregrind/m_syswrap/syswrap-ppc64-linux.c +++ b/coregrind/m_syswrap/syswrap-ppc64-linux.c @@ -988,7 +988,7 @@ static SyscallTableEntry syscall_table[] = { LINXY(__NR_rt_sigaction, sys_rt_sigaction), // 173 LINXY(__NR_rt_sigprocmask, sys_rt_sigprocmask), // 174 -// _____(__NR_rt_sigpending, sys_rt_sigpending), // 175 + LINXY(__NR_rt_sigpending, sys_rt_sigpending), // 175 LINXY(__NR_rt_sigtimedwait, sys_rt_sigtimedwait), // 176 LINXY(__NR_rt_sigqueueinfo, sys_rt_sigqueueinfo), // 177 LINX_(__NR_rt_sigsuspend, sys_rt_sigsuspend), // 178 -- 2.47.3