summaryrefslogtreecommitdiff
path: root/ipc.c
diff options
context:
space:
mode:
authorRoland McGrath <roland@redhat.com>2005-12-02 04:34:09 +0000
committerRoland McGrath <roland@redhat.com>2005-12-02 04:34:09 +0000
commite1ebaabb727036c3319c5bdb361d3c3c937ad37a (patch)
tree2a4eb5649083cc701aa20ab31680d54a52e7bc1d /ipc.c
parentcdb247397a416d02fbd8bd5fe6f9b9fac8b9610e (diff)
downloadstrace-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.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/ipc.c b/ipc.c
index baec4240d..79101a947 100644
--- a/ipc.c
+++ b/ipc.c
@@ -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;
}