|
From: Hannu V. <vu...@ms...> - 2013-01-30 16:22:36
|
Hi! I have terminal app which uses curses. I am not propably the only one who wants to debug that kind of software, so how do you do that? connect gdb to running process but it might be little bit late for that. My problem is that valgrind trashes output and steals my input so my app doesn't have terminal anymore to use. Best regards, Hannu Vuolasaho |
|
From: Julian S. <js...@ac...> - 2013-01-30 16:36:16
|
> My problem is that valgrind trashes output and steals my input so my app Get V to send all output to a network socket --log-socket=127.0.0.1:1500 and in a different window run the listener program valgrind-listener -h J |