summaryrefslogtreecommitdiff
path: root/linux
diff options
context:
space:
mode:
authorChris Zankel <chris@zankel.net>2013-05-06 15:21:38 -0700
committerDmitry V. Levin <ldv@altlinux.org>2013-05-06 23:18:28 +0000
commit2f6519a9c1953dc33ba42e1c9b2178dc47efea42 (patch)
treee79d0c61843bd84358cd731da156dd1a54ff0d9f /linux
parent6b03c9b5ced3d4f0d641443a73bd34ba481dbd1a (diff)
downloadstrace-2f6519a9c1953dc33ba42e1c9b2178dc47efea42.tar.gz
strace-2f6519a9c1953dc33ba42e1c9b2178dc47efea42.tar.bz2
strace-2f6519a9c1953dc33ba42e1c9b2178dc47efea42.tar.xz
xtensa: disable socket and ipc subcall support
The Xtensa architecture also uses dedicated syscalls and doesn't need to multiplex ipc and socket subcalls. * linux/syscall.h [XTENSA]: Do not define SYS_socket_subcall and SYS_ipc_subcall. Signed-off-by: Chris Zankel <chris@zankel.net>
Diffstat (limited to 'linux')
-rw-r--r--linux/syscall.h3
1 files changed, 2 insertions, 1 deletions
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