diff options
author | Roland McGrath <roland@redhat.com> | 2005-12-02 04:34:09 +0000 |
---|---|---|
committer | Roland McGrath <roland@redhat.com> | 2005-12-02 04:34:09 +0000 |
commit | e1ebaabb727036c3319c5bdb361d3c3c937ad37a (patch) | |
tree | 2a4eb5649083cc701aa20ab31680d54a52e7bc1d /ipc.c | |
parent | cdb247397a416d02fbd8bd5fe6f9b9fac8b9610e (diff) | |
download | strace-e1ebaabb727036c3319c5bdb361d3c3c937ad37a.tar.gz |
2005-12-01 Roland McGrath <roland@redhat.com>
* ipc.c (indirect_ipccall) [MIPS || HPPA]: Return false.
Fixes Debian#340239.
Diffstat (limited to 'ipc.c')
-rw-r--r-- | ipc.c | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -188,6 +188,10 @@ struct tcb *tcp; #if defined IA64 return tcp->scno < 1024; /* ia32 emulation syscalls are low */ #endif +#if !defined MIPS && !defined HPPA + return 1; +#endif +#endif /* LINUX */ return 0; } |