A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

安装
apt-get install valgrind

注意在Ubuntu 16.10上,需要python2为默认python版本。


运行
启动C++程序前加上valgrind即可。

valgrind ./builder/bin/wind_tunnel_d -c ./config_pdc.js


检查报告
C-c C-c退出进程,可以看到如下报告:

==16085== Memcheck, a memory error detector
==16085== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al.
==16085== Using Valgrind-3.12.0.SVN and LibVEX; rerun with -h for copyright info
==16085== Command: ./builder/bin/wind_tunnel_d -c ./config_pdc.js
==16085==
  C-c C-c==16085==
==16085== HEAP SUMMARY:
==16085==     in use at exit: 56,708 bytes in 206 blocks
==16085==   total heap usage: 553,865 allocs, 553,659 frees, 35,269,883 bytes allocated
==16085==
==16085== LEAK SUMMARY:
==16085==    definitely lost: 0 bytes in 0 blocks
==16085==    indirectly lost: 0 bytes in 0 blocks
==16085==      possibly lost: 0 bytes in 0 blocks
==16085==    still reachable: 56,708 bytes in 206 blocks
==16085==                       of which reachable via heuristic:
==16085==                         newarray           : 14,440 bytes in 29 blocks
==16085==         suppressed: 0 bytes in 0 blocks
==16085== Rerun with --leak-check=full to see details of leaked memory
==16085==
==16085== For counts of detected and suppressed errors, rerun with: -v
==16085== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)

---------------------
作者:csfreebird
来源:CSDN
原文:https://blog.csdn.net/csfreebird/article/details/76528970
版权声明:本文为博主原创文章,转载请附上博文链接!

2 个回复

倒序浏览
回复 使用道具 举报
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马