]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
Wire up recvmmsg on arm. BZ#334585.
authorTom Hughes <tom@compton.nu>
Thu, 26 Jun 2014 13:34:53 +0000 (13:34 +0000)
committerTom Hughes <tom@compton.nu>
Thu, 26 Jun 2014 13:34:53 +0000 (13:34 +0000)
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@14113

NEWS
coregrind/m_syswrap/syswrap-arm-linux.c
docs/internals/3_9_BUGSTATUS.txt

diff --git a/NEWS b/NEWS
index 5714944cbd9871688e9646847dcdaaccb0bc1454..faf9fb62b46b9ea9a64e3ab44395694633244149 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -157,6 +157,7 @@ where XXXXXX is the bug number as listed below.
 333817  Valgrind reports the memory areas written to by the SG_IO
         ioctl as untouched
 334049  lzcnt fails silently (x86_32)
+334585  recvmmsg unhandled (+patch) (arm)
 334705  sendmsg and recvmsg should guard against bogus msghdr fields.
 334727  Build fails with -Werror=format-security
 334788  clarify doc about --log-file initial program directory
index 37385507a6dc7c10985070ee766c549d16777af0..7680ad0a34a7783cc9e0c349ed239e9aa0d062d2 100644 (file)
@@ -1220,7 +1220,7 @@ static SyscallTableEntry syscall_main_table[] = {
    LINX_(__NR_pwritev,           sys_pwritev),          // 362
    LINXY(__NR_rt_tgsigqueueinfo, sys_rt_tgsigqueueinfo),// 363
    LINXY(__NR_perf_event_open,   sys_perf_event_open),  // 364
-
+   LINXY(__NR_recvmmsg,          sys_recvmmsg),         // 365
    LINXY(__NR_accept4,           sys_accept4),          // 366
    LINXY(__NR_fanotify_init,     sys_fanotify_init),    // 367
    LINX_(__NR_fanotify_mark,     sys_fanotify_mark),    // 368
index ca99af932fbba204da73e0ab5e42b6b9c0f1a774..43c361083f9fa8376b4228d3dc7d21c90d148efc 100644 (file)
@@ -57,7 +57,6 @@ For bugs reported before this time, see 3_8_BUGSTATUS.txt
 333434  In some weird corner case Valgrind cannot execute
         executable files symlinked by /proc/self/fd (related to 331311?)
 333051  handling hugepages (is largely broken)
-334585  recvmmsg unhandled (+patch) (arm)
 
 === Debuginfo reader ===================================================