The Xtensa architecture also used dedicated syscalls and doesn't need to multiplex ipc and socket subcalls.
* linux/syscall.h: Do not define SYS_socket_subcall and SYS_ipc_subcall for xtensa. Signed-off-by: Chris Zankel <[email protected]> --- linux/syscall.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/linux/syscall.h b/linux/syscall.h index d0cf423..878732d 100644 --- a/linux/syscall.h +++ b/linux/syscall.h @@ -318,7 +318,8 @@ int sys_osf_wait4(); && !defined(HPPA) \ && !defined(__ARM_EABI__) \ && !defined(BFIN) \ - && !defined(TILE) + && !defined(TILE) \ + && !defined(XTENSA) # if defined(SPARC) || defined(SPARC64) # define SYS_socket_subcall 353 # else -- 1.7.10.4 ------------------------------------------------------------------------------ Learn Graph Databases - Download FREE O'Reilly Book "Graph Databases" is the definitive new guide to graph databases and their applications. This 200-page book is written by three acclaimed leaders in the field. The early access version is available now. Download your free book today! http://p.sf.net/sfu/neotech_d2d_may _______________________________________________ Strace-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/strace-devel
