]> granicus.if.org Git - strace/commitdiff
2005-12-01 Roland McGrath <roland@redhat.com>
authorRoland McGrath <roland@redhat.com>
Fri, 2 Dec 2005 04:34:09 +0000 (04:34 +0000)
committerRoland McGrath <roland@redhat.com>
Fri, 2 Dec 2005 04:34:09 +0000 (04:34 +0000)
* ipc.c (indirect_ipccall) [MIPS || HPPA]: Return false.
Fixes Debian#340239.

ipc.c

diff --git a/ipc.c b/ipc.c
index baec4240de97c63525455cd26ae162d22a0dbe34..79101a947b1c651c2c5acef2a625c81b35e79fde 100644 (file)
--- 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;
 }