From: Roland McGrath Date: Fri, 2 Dec 2005 04:34:09 +0000 (+0000) Subject: 2005-12-01 Roland McGrath X-Git-Tag: v4.5.18~311 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e1ebaabb727036c3319c5bdb361d3c3c937ad37a;p=strace 2005-12-01 Roland McGrath * ipc.c (indirect_ipccall) [MIPS || HPPA]: Return false. Fixes Debian#340239. --- diff --git a/ipc.c b/ipc.c index baec4240..79101a94 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; }