summaryrefslogtreecommitdiff
path: root/linux
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2013-05-06 01:49:41 -0400
committerDmitry V. Levin <ldv@altlinux.org>2013-05-06 18:08:39 +0000
commit6b572cfd2b2a65818f4164b896a59ae59a762c82 (patch)
tree0d8010746e4d33af87c2649e558dffb67e01ea1b /linux
parent554c8beaab866e84ab65efee7de73708006495b8 (diff)
downloadstrace-6b572cfd2b2a65818f4164b896a59ae59a762c82.tar.gz
strace-6b572cfd2b2a65818f4164b896a59ae59a762c82.tar.bz2
strace-6b572cfd2b2a65818f4164b896a59ae59a762c82.tar.xz
Blackfin: disable socketcall and ipc subcall support
The Blackfin arch does not have a socketcall or ipc subcall (it has dedicated syscalls broken out), so disable the logic for it. * linux/syscall.h [BFIN]: Do not define SYS_socket_subcall and SYS_ipc_subcall.
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 6368cef..666de00 100644
--- a/linux/syscall.h
+++ b/linux/syscall.h
@@ -316,7 +316,8 @@ int sys_osf_wait4();
#if !defined(ALPHA) \
&& !defined(MIPS) \
&& !defined(HPPA) \
- && !defined(__ARM_EABI__)
+ && !defined(__ARM_EABI__) \
+ && !defined(BFIN)
# if defined(SPARC) || defined(SPARC64)
# define SYS_socket_subcall 353
# else