嵌入式linux系统与图像处理seen.blog.chinaunix.net
zhiqiang0071
全部博文(185)
2014年(1)
2012年(6)
2011年(27)
2010年(13)
2009年(75)
2008年(63)
lixw_chi
Bcrane
zhuqing_
梨落2013
xiaoqian
yanjie_l
li19916
walterpe
sabrisu
cwez21
ljb20170
gaokeke1
xuebabyb
格伯纳
Bsolar
浪花小雨
试剂级神
gmmatt
分类: LINUX
2008-11-22 18:44:06
--- strace-4.5.16-orig/syscall.c 2005-06-08 21:45:28.000000000 +0100 +++ strace-4.5.16/syscall.c 2005-10-25 19:26:39.000000000 +0100 @@ -1045,6 +1045,15 @@ struct tcb *tcp; /* * Note: we only deal with only 32-bit CPUs here. */ + + if (!(tcp->flags & TCB_INSYSCALL) && + (tcp->flags & TCB_WAITEXECVE)) { + /* caught a fake syscall from the execve's exit */ + tcp->flags &= ~TCB_WAITEXECVE; + return 0; + } + + if (regs.ARM_cpsr & 0x20) { /* * Get the Thumb-mode system call number
上一篇:Linux下性能监控工具介绍
下一篇:嵌入式Linux Ramdisk文件系统制作(u-boot, busybox)
chinaunix网友2010-12-07 10:31:45
http://blog.chinaunix.net/u1/38279/showart_367248.html 看不到啊!!!!
登录 注册