摘要:
gprof 生成函数调用关系以及调用次数,并统计耗时。用于优化代码或发现隐藏的问题。 示例 示例代码 1 #include <stdio.h> 2 3 void FunB() 4 { 5 int a = 1; 6 int b = 2; 7 int c; 8 for(int i = 0; i < 10 阅读全文
posted @ 2020-07-21 19:33
NoSoul.Love
阅读(317)
评论(0)
推荐(0)