我有一个简单的C程序如下
main(int argc, char *argv[])
{
/* Calling read function to character device driver*/
int fd = fopen("MyCharDevice",0);
/*write call to device and further code*/
return 0;
}
现在,当我使用 分析它时gprof
,我没有时间使用main()
函数本身。
$ gprof -b -a a.out > analysis.txt
我在哪里调用我的 char 设备(我需要对其进行分析)。我尝试将与调用设备驱动程序相对应的代码放在其他一些函数中,但我得到了同样的结果。
内容analysis.txt
如下:
Flat profile:
Each sample counts as 0.01 seconds.
no time accumulated
% cumulative self self total
time seconds seconds calls Ts/call Ts/call name
0.00 0.00 0.00 3 0.00 0.00 __gmon_start__
Call graph
granularity: each sample hit covers 4 byte(s) no time propagated
index % time self children called name
0.00 0.00 3/3 main [3]
[4] 0.0 0.00 0.00 3 __gmon_start__ [4]
-----------------------------------------------
Index by function name
[4] __gmon_start__
我不明白我怎么能得到时间。
我的要求:
实际上我必须使用一些 Linux 性能分析工具来比较信号量和 R/W 信号量的性能。所以我正在使用gprof
.