|
From: <sv...@va...> - 2015-04-22 15:29:12
|
Author: mjw
Date: Wed Apr 22 16:29:03 2015
New Revision: 15133
Log:
Enable rt_sigpending syscall on ppc64 linux.
Patch from Thomas Huth <th...@re...>
Modified:
trunk/NEWS
trunk/coregrind/m_syswrap/syswrap-ppc64-linux.c
Modified: trunk/NEWS
==============================================================================
--- trunk/NEWS (original)
+++ trunk/NEWS Wed Apr 22 16:29:03 2015
@@ -162,6 +162,7 @@
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)
Modified: trunk/coregrind/m_syswrap/syswrap-ppc64-linux.c
==============================================================================
--- trunk/coregrind/m_syswrap/syswrap-ppc64-linux.c (original)
+++ trunk/coregrind/m_syswrap/syswrap-ppc64-linux.c Wed Apr 22 16:29:03 2015
@@ -988,7 +988,7 @@
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
|