|
From: Petar J. <pe...@so...> - 2019-11-26 13:27:09
|
https://sourceware.org/git/gitweb.cgi?p=valgrind.git;h=f5a6ad6e78f7e9efebb8cbe73acaa635070ff36d commit f5a6ad6e78f7e9efebb8cbe73acaa635070ff36d Author: Petar Jovanovic <mip...@gm...> Date: Tue Nov 26 13:10:47 2019 +0000 mips32: hook up waitid syscall Hook up waitid syscall for mips32. This fixes waitid01 failure in the LTP test suite. Diff: --- coregrind/m_syswrap/syswrap-mips32-linux.c | 1 + 1 file changed, 1 insertion(+) diff --git a/coregrind/m_syswrap/syswrap-mips32-linux.c b/coregrind/m_syswrap/syswrap-mips32-linux.c index ace3c1e..bc3699f 100644 --- a/coregrind/m_syswrap/syswrap-mips32-linux.c +++ b/coregrind/m_syswrap/syswrap-mips32-linux.c @@ -1041,6 +1041,7 @@ static SyscallTableEntry syscall_main_table[] = { LINX_ (__NR_inotify_init, sys_inotify_init), // 275 LINX_ (__NR_inotify_add_watch, sys_inotify_add_watch), // 276 LINX_ (__NR_inotify_rm_watch, sys_inotify_rm_watch), // 277 + LINXY (__NR_waitid, sys_waitid), // 278 //.. PLAX_ (__NR_set_thread_area, sys_set_thread_area), // 283 //.. |