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:
Aliaksey Kandratsenka 2009-09-24 14:20:40 +03:00 committed by Slava Zanko
parent fc08c10012
commit 233f943e87

View File

@ -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));