|
From: Petar J. <pe...@so...> - 2019-08-14 15:45:51
|
https://sourceware.org/git/gitweb.cgi?p=valgrind.git;h=a03ca6eef8a5be700ffa4fedf63fc00761230d73 commit a03ca6eef8a5be700ffa4fedf63fc00761230d73 Author: Petar Jovanovic <mip...@gm...> Date: Wed Aug 14 15:36:07 2019 +0000 mips32: hook up sched_setparam syscall Hook up sched_setparam syscall for mips32. This fixes sched_setparam01 and several other tests in the LTP test suite. Diff: --- coregrind/m_syswrap/syswrap-mips32-linux.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/coregrind/m_syswrap/syswrap-mips32-linux.c b/coregrind/m_syswrap/syswrap-mips32-linux.c index 606b9e2..c745550 100644 --- a/coregrind/m_syswrap/syswrap-mips32-linux.c +++ b/coregrind/m_syswrap/syswrap-mips32-linux.c @@ -920,7 +920,7 @@ static SyscallTableEntry syscall_main_table[] = { GENX_ (__NR_munlock, sys_munlock), // 155 GENX_ (__NR_mlockall, sys_mlockall), // 156 LINX_ (__NR_munlockall, sys_munlockall), // 157 - //.. LINXY(__NR_sched_setparam, sys_sched_setparam), // 158 + LINXY (__NR_sched_setparam, sys_sched_setparam), // 158 LINXY (__NR_sched_getparam, sys_sched_getparam), // 159 LINX_ (__NR_sched_setscheduler, sys_sched_setscheduler), // 160 LINX_ (__NR_sched_getscheduler, sys_sched_getscheduler), // 161 |