|
From: <sv...@va...> - 2014-02-20 15:43:17
|
Author: mjw
Date: Thu Feb 20 15:43:07 2014
New Revision: 13820
Log:
Bug 331337 s390x WARNING: unhandled syscall: 326 (dup3)
Modified:
trunk/NEWS
trunk/coregrind/m_syswrap/syswrap-s390x-linux.c
Modified: trunk/NEWS
==============================================================================
--- trunk/NEWS (original)
+++ trunk/NEWS Thu Feb 20 15:43:07 2014
@@ -57,6 +57,7 @@
331254 Fix expected output for memcheck/tests/dw4
331255 Fix race condition in test none/tests/coolo_sigaction
331257 Fix type of jump buffer in test none/tests/faultstatus
+331337 s390x WARNING: unhandled syscall: 326 (dup3)
n-i-bz Fix KVM_CREATE_IRQCHIP ioctl handling
Release 3.9.0 (31 October 2013)
Modified: trunk/coregrind/m_syswrap/syswrap-s390x-linux.c
==============================================================================
--- trunk/coregrind/m_syswrap/syswrap-s390x-linux.c (original)
+++ trunk/coregrind/m_syswrap/syswrap-s390x-linux.c Thu Feb 20 15:43:07 2014
@@ -1044,7 +1044,7 @@
LINXY(__NR_inotify_init1, sys_inotify_init1), // 324
LINXY(__NR_pipe2, sys_pipe2), // 325
- // (__NR_dup3, ),
+ LINXY(__NR_dup3, sys_dup3), // 326
LINXY(__NR_epoll_create1, sys_epoll_create1), // 327
LINXY(__NR_preadv, sys_preadv), // 328
LINX_(__NR_pwritev, sys_pwritev), // 329
|