|
From: Lu M. <kin...@gm...> - 2013-09-29 23:13:37
|
Hello all, Memcheck could be used to detect different type of bugs: 1. illegal read/write 2. use of uninitialised values 3. illegal frees 4. when a heap block is freed with an inappropriate deallocation function ... I am wondering whether it is possible to use valgrind to check specified bug types? In other words, I would like to use memcheck to only check addressable bug, illegal frees bug and allocation/deallocation routine mismatched bug in the first run. Then check the use of uninitialised values bug in the second run. Thanks a lot. |