本文主要是介绍valgrind 工具helgrind使用,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
valgrind --tool=helgrind --log-file=./valgrind.log ./game_50
- 可能的错误报告:
Possible data race during read/write of size X at address Y by thread #Z. Locks held: none
。这表示在地址Y处,大小为X的数据被线程#Z在没有持有锁的情况下读写,可能与其他线程发生了竞争。
这篇关于valgrind 工具helgrind使用的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!