From 406dab851b0f884f40671dafec5a5d9d357f0f09 Mon Sep 17 00:00:00 2001 From: reimar Date: Sat, 10 Nov 2007 11:09:08 +0000 Subject: [PATCH] Restore terminal for gdb with -crash-debug by calling getch2_disable() git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25009 b3059339-0415-0410-9bf9-f77b7e298cf2 --- mplayer.c | 1 + 1 file changed, 1 insertion(+) diff --git a/mplayer.c b/mplayer.c index 9c0c925db6..bce5f62c41 100644 --- a/mplayer.c +++ b/mplayer.c @@ -774,6 +774,7 @@ static void exit_sighandler(int x){ gdb_pid = fork(); mp_msg(MSGT_CPLAYER, MSGL_INFO, "Forked...\n"); if (gdb_pid == 0) { // We are the child + getch2_disable(); // allow terminal to work properly with gdb if (execlp("gdb", "gdb", prog_path, spid, NULL) == -1) mp_msg(MSGT_CPLAYER, MSGL_ERR, "Couldn't start gdb\n"); } else if (gdb_pid < 0)