strace使用

统计信息
-c -- count time, calls, and errors for each syscall and report summary
输出结果到文件
-o  
例如 strace -c -o test.log ./test

系统调用所花费的时间
-T
系统调用所发生的时间
-t或者-tt
限制输出长度
-s
跟踪指定进程号

-p 98545

跟踪fork出来的子进程
-f

输出字符串的长度(默认32)

-s


常用

strace -o test.log -T -tt  -p 98545

转载于:https://www.cnblogs.com/ruanjianxian/p/6126870.html

你可能感兴趣的:(strace使用)