【文件属性】:
文件名称:gperftools-unwind-graphviz.20200119.tar.gz
文件大小:25.39MB
文件格式:GZ
更新时间:2023-02-08 11:01:48
性能分析工具
gperftools安装包和依赖包;
安装使用说明;
示例代码:
#include
#include
void func1(void)
{
int i = 0;
while (i < 1000000) {
++i;
}
return;
}
void func2(void)
{
int i = 0;
while (i < 2000000) {
++i;
}
return;
}
void func3(void)
{
for (int i = 0; i < 1000; ++i) {
func1();
func2();
}
return;
}
int main(int argc, char *argv[])
{
ProfilerStart("my.prof"); // 指定所生成的profile文件名
func3();
ProfilerStop(); // 结束profiling
return 0;
}
【文件预览】:
gperftools-unwind-graphviz
----gperftools-2.6.1.tar.gz(1.43MB)
----test.c(516B)
----readme-20200119-lfc.txt(565B)
----graphviz.tar.gz(24.45MB)
----libunwind-0.99-beta.tar.gz(630KB)