Ignore rt_sigaction() syscalls on x86 and x86_64
This is currently how alpha handles this syscall. This is needed for the gcc spec2k benchmarks to run.
This commit is contained in:
parent
15a3a7b37b
commit
22dc2b5595
1 changed files with 2 additions and 2 deletions
|
@ -241,7 +241,7 @@ SyscallDesc X86_64LinuxProcess::syscallDescs[] = {
|
|||
/* 10 */ SyscallDesc("mprotect", unimplementedFunc),
|
||||
/* 11 */ SyscallDesc("munmap", munmapFunc),
|
||||
/* 12 */ SyscallDesc("brk", brkFunc),
|
||||
/* 13 */ SyscallDesc("rt_sigaction", unimplementedFunc),
|
||||
/* 13 */ SyscallDesc("rt_sigaction", ignoreFunc),
|
||||
/* 14 */ SyscallDesc("rt_sigprocmask", unimplementedFunc),
|
||||
/* 15 */ SyscallDesc("rt_sigreturn", unimplementedFunc),
|
||||
/* 16 */ SyscallDesc("ioctl", unimplementedFunc),
|
||||
|
@ -681,7 +681,7 @@ SyscallDesc I386LinuxProcess::syscallDescs[] = {
|
|||
/* 171 */ SyscallDesc("getresgid", unimplementedFunc),
|
||||
/* 172 */ SyscallDesc("prctl", unimplementedFunc),
|
||||
/* 173 */ SyscallDesc("rt_sigreturn", unimplementedFunc),
|
||||
/* 174 */ SyscallDesc("rt_sigaction", unimplementedFunc),
|
||||
/* 174 */ SyscallDesc("rt_sigaction", ignoreFunc),
|
||||
/* 175 */ SyscallDesc("rt_sigprocmask", unimplementedFunc),
|
||||
/* 176 */ SyscallDesc("rt_sigpending", unimplementedFunc),
|
||||
/* 177 */ SyscallDesc("rt_sigtimedwait", unimplementedFunc),
|
||||
|
|
Loading…
Reference in a new issue