|
From: Roberto D. <rd...@ti...> - 2006-04-06 08:59:03
|
Hi all! I have a proccess I am debugging under valgrind in order to see the memory leaks.. It seems I need the proccess to terminate to see the leak report.. my process terminates when it receives a SIGINT.. the problem is I dont know how to send the signal.. with C-c valgrind terminates but my proccess seems not to be receiving the signal. Any help would be very appreciated Regards Roberto |
|
From: Bob R. <bob...@co...> - 2006-04-06 10:46:42
|
On Thu, Apr 06, 2006 at 10:58:35AM +0200, Roberto Diaz wrote: > Hi all! > > I have a proccess I am debugging under valgrind in order to see the > memory leaks.. > > It seems I need the proccess to terminate to see the leak report.. my > process terminates when it receives a SIGINT.. the problem is I dont > know how to send the signal.. with C-c valgrind terminates but my > proccess seems not to be receiving the signal. > > Any help would be very appreciated Does 'kill -s INT inferior-pid' work? Bob Rossi |