2005-12-01 Roland McGrath <roland@redhat.com>

* ipc.c (indirect_ipccall) [IA64]: Return false unless the syscall
	number is in the low range of IA32 syscalls.
This commit is contained in:
Roland McGrath 2005-12-02 04:18:55 +00:00
parent 13d9851c4f
commit a81bf4c79f

3
ipc.c
View File

@ -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;
}