comparison src/process-unix.c @ 284:558f606b08ae r21-0b40

Import from CVS: tag r21-0b40
author cvs
date Mon, 13 Aug 2007 10:34:13 +0200
parents c42ec1d1cded
children e11d67e05968
comparison
equal deleted inserted replaced
283:fa3d41851a08 284:558f606b08ae
594 tcgetattr (tty_fd, &t); 594 tcgetattr (tty_fd, &t);
595 switch (signo) 595 switch (signo)
596 { 596 {
597 case SIGINT: return t.c_cc[VINTR]; 597 case SIGINT: return t.c_cc[VINTR];
598 case SIGQUIT: return t.c_cc[VQUIT]; 598 case SIGQUIT: return t.c_cc[VQUIT];
599 # if defined (VSWTCH) && !defined (PREFER_VSUSP) 599 #if defined(SIGTSTP) && defined(VSUSP)
600 case SIGTSTP: return t.c_cc[VSWTCH];
601 # else
602 case SIGTSTP: return t.c_cc[VSUSP]; 600 case SIGTSTP: return t.c_cc[VSUSP];
603 # endif 601 #endif
604 } 602 }
605 } 603 }
606 604
607 # elif defined (TIOCGLTC) && defined (TIOCGETC) /* not HAVE_TERMIOS */ 605 # elif defined (TIOCGLTC) && defined (TIOCGETC) /* not HAVE_TERMIOS */
608 { 606 {