如何获取valgrind的错误报告?
How to get the error report of valgrind?
首先我运行是这样的:
valgrind --leak-check=full --show-leak-kinds=all test_proc
和日志:
==30349== For counts of detected and suppressed errors, rerun with: -v
==30349== ERROR SUMMARY: 7 errors from 7 contexts (suppressed: 0 from 0)
所以我 运行 和 -v
valgrind -v --leak-check=full --show-leak-kinds=all test_proc
和日志:
==8020== ERROR SUMMARY: 7 errors from 7 contexts (suppressed: 0 from 0)
==8020== ERROR SUMMARY: 7 errors from 7 contexts (suppressed: 0 from 0)
我找不到其他错误关键字。哪里出错了?
我想我明白了,7
代表possibly lost
和definitely lost
条记录的总数。
首先我运行是这样的:
valgrind --leak-check=full --show-leak-kinds=all test_proc
和日志:
==30349== For counts of detected and suppressed errors, rerun with: -v
==30349== ERROR SUMMARY: 7 errors from 7 contexts (suppressed: 0 from 0)
所以我 运行 和 -v
valgrind -v --leak-check=full --show-leak-kinds=all test_proc
和日志:
==8020== ERROR SUMMARY: 7 errors from 7 contexts (suppressed: 0 from 0)
==8020== ERROR SUMMARY: 7 errors from 7 contexts (suppressed: 0 from 0)
我找不到其他错误关键字。哪里出错了?
我想我明白了,7
代表possibly lost
和definitely lost
条记录的总数。