关于linux下strace疑点

关于linux下strace疑问
[root@localhost ~]# strace -c -p 3277
Process 3277 attached - interrupt to quit
Process 3277 detached
[root@localhost ~]#

如上,3277为进程ID,为查看不打调用花费的时间信息了呢,有知道的吗 谢谢
------解决思路----------------------
http://www.cnblogs.com/ggjucheng/archive/2012/01/08/2316692.html
------解决思路----------------------
since you attach strace to a running process, you probably don't want to get the statistic report unless you don't mind to terminate that process. I guess that is what you refer to as "显示系统调用的花费时间". On command line, Generate Statistics Report of System Calls Using Option -c

However, you could try

Print Timestamp for Each Trace Output Line Using Option -t

It may not give you any clue since -t only counts up to second.

So try the following:

 Print Relative Time for System Calls Using Option -r