mirror of
https://github.com/MidnightCommander/mc
synced 2025-04-03 05:32:56 +03:00
don't set TOSTOP attribute on slave terminal
TOSTOP doesn't work well with some software. Examples known to me are: - debugging multithreaded program with gdb (gdb job stops) - running 'check' tests in fork mode (default) that do some output (tests mysteriously fail due to timeout) IMO TOSTOP adds too little value compared to compatibility problems it creates. Signed-off-by: Slava Zanko <slavazanko@gmail.com>
This commit is contained in:
parent
fc08c10012
commit
233f943e87
@ -213,10 +213,7 @@ init_subshell_child (const char *pty_name)
|
||||
|
||||
/* Configure its terminal modes and window size */
|
||||
|
||||
/* Set up the pty with the same termios flags as our own tty, plus */
|
||||
/* TOSTOP, which keeps background processes from writing to the pty */
|
||||
|
||||
shell_mode.c_lflag |= TOSTOP; /* So background writers get SIGTTOU */
|
||||
/* Set up the pty with the same termios flags as our own tty */
|
||||
if (tcsetattr (subshell_pty_slave, TCSANOW, &shell_mode)) {
|
||||
fprintf (stderr, "Cannot set pty terminal modes: %s\r\n",
|
||||
unix_error_string (errno));
|
||||
|
Loading…
x
Reference in New Issue
Block a user