1

我有一个简单的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.

4

1 回答 1

0

我是一张卡住的唱片,一遍又一遍地重复

gprof对 I/O 时间
gprof不敏感 对 I/O 时间
gprof不敏感 对 I/O 时间
等不敏感 等等。

告诉你如何花费时间的方法是在它周围加上一个循环

在 GDB 下暂停并检查堆栈
在 GDB 下暂停并检查堆栈
在 GDB 下暂停并检查堆栈
等。

由于所有这些原因,祝你好运!

于 2013-08-12T18:41:17.607 回答