|
From: John R. <jr...@Bi...> - 2014-03-19 14:01:45
|
> Is there any way to check the the summary of Valgrind found issues while > application is still running ... Look in memcheck/memcheck.h and search for all instances of LEAK_CHECK. The app should catch a signal and the handler should call one of the LEAK_CHECK requests. Or, make a suitable LEAK_CHECK call synchronously at appropriate times: just before and after each "phase", or after every N events, etc. -- |