Search code examples
memory-leaksvalgrind

Send signal to a process inside valgrind?


How can I send a signal to my process which runs inside valgrind to check its memory usage status?

Thanks!


Solution

  • To send a signal to valgrind, pkill -USR1 valgrind doesn't want to work for me.

    pkill -USR1 memcheck

    does the trick.