Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如果我运行 Valgrind cachegrind,一个或多个线程的结果会不同吗?还是 Valgrind 只是对程序进行顺序化,只报告一个线程的工作?
Valgrind以不确定的方式序列化所有线程并分析顺序代码流。您将收到有关所有代码的结果,但结果可能不代表相同代码的实际生产运行。(例如,许多与并发相关的错误不会在 Valgrind 下运行的程序中出现。)