其他分享
首页 > 其他分享> > valgrind ----直接使用参数

valgrind ----直接使用参数

作者:互联网

内存泄露:

sudo valgrind --tool=memcheck --leak-check=full --time-stamp=yes --max-threads=1000 --track-origins=yes --log-file=./valgrind_report_1000.log    a.out

多线程竞争:

sudo valgrind --tool=helgrind  --log-file=./valgrind_report_0906_mul_thread.log a.out

 

标签:log,--,sudo,valgrind,----,参数,file,yes
来源: https://www.cnblogs.com/axjlxy/p/15240004.html