aboutsummaryrefslogtreecommitdiffstats
path: root/src/process.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/process.c')
-rw-r--r--src/process.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/process.c b/src/process.c
index afa1651dfca..105e055b180 100644
--- a/src/process.c
+++ b/src/process.c
@@ -1231,7 +1231,7 @@ create_process (process, new_argv, current_dir)
1231 ioctl (xforkin, TIOCSCTTY, 0); 1231 ioctl (xforkin, TIOCSCTTY, 0);
1232#endif 1232#endif
1233#else /* not HAVE_SETSID */ 1233#else /* not HAVE_SETSID */
1234#if defined (USG) && !defined (IRIX) 1234#ifdef USG
1235 /* It's very important to call setpgrp() here and no time 1235 /* It's very important to call setpgrp() here and no time
1236 afterwards. Otherwise, we lose our controlling tty which 1236 afterwards. Otherwise, we lose our controlling tty which
1237 is set when we open the pty. */ 1237 is set when we open the pty. */
@@ -2370,7 +2370,7 @@ process_send_signal (process, signo, current_group, nomsg)
2370 2370
2371 case SIGTSTP: 2371 case SIGTSTP:
2372 tcgetattr (XINT (p->infd), &t); 2372 tcgetattr (XINT (p->infd), &t);
2373#ifdef VSWTCH 2373#if defined (VSWTCH) && !defined (IRIX5)
2374 send_process (proc, &t.c_cc[VSWTCH], 1); 2374 send_process (proc, &t.c_cc[VSWTCH], 1);
2375#else 2375#else
2376 send_process (proc, &t.c_cc[VSUSP], 1); 2376 send_process (proc, &t.c_cc[VSUSP], 1);