The Blackfin arch does not have a socketcall (it has dedicated syscalls broken out), so disable the logic for it.
* linux/syscall.h: Do not define SYS_socket_subcall for BFIN targets. --- linux/syscall.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 -- 1.8.2.1 ------------------------------------------------------------------------------ Introducing AppDynamics Lite, a free troubleshooting tool for Java/.NET Get 100% visibility into your production application - at no cost. Code-level diagnostics for performance bottlenecks with <2% overhead Download for free and get started troubleshooting in minutes. http://p.sf.net/sfu/appdyn_d2d_ap1 _______________________________________________ Strace-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/strace-devel
