|
From: Henrik N. <hn...@ma...> - 2004-04-22 00:51:12
|
On Tue, 20 Apr 2004, Bob Rossi wrote: > Is there any easy way to run valgrind on a curses application. > Basically, when you tell valgrind to run a new window, is there an > option to have it execute the new program in an xterm or something? That > would help the I/O fighting between valgrind and the exe. The following should work I think: exec 5>&2 xterm -e valgrind --logfile-fd=5 ... Regards Henrik |