From: Roland McGrath Date: Fri, 2 Dec 2005 04:18:55 +0000 (+0000) Subject: 2005-12-01 Roland McGrath X-Git-Tag: v4.5.18~317 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a81bf4c79f9f2706cd1bea0082fb8d63f08e8a5b;p=strace 2005-12-01 Roland McGrath * ipc.c (indirect_ipccall) [IA64]: Return false unless the syscall number is in the low range of IA32 syscalls. --- diff --git a/ipc.c b/ipc.c index d16f70a9..baec4240 100644 --- a/ipc.c +++ b/ipc.c @@ -185,7 +185,8 @@ struct tcb *tcp; #ifdef X86_64 return current_personality > 0; #endif - return 1; +#if defined IA64 + return tcp->scno < 1024; /* ia32 emulation syscalls are low */ #endif return 0; }