Which of the following issues does Valgrind NOT help you tra
Which of the following issues does Valgrind NOT help you track?
a) Memory Leaks b) CPU allocation Policy Violations c) Uninitialized Memory Reads
Solution
Answer :
b) CPU allocation Policy Violations
As Valgrind provides a tool called Memcheck which detects many memory related issues like Leak Memory or unitialized memory reads but it never debugs CPU allocation policies. This tool is only to debug memory related isssues.
