ISIG
| ISIG /* disable interrupt, quit, and suspend special
driver->init_termios.c_lflag = ISIG;
driver->init_termios.c_lflag = ISIG | ECHO;
ktermios.c_lflag &= ~(ECHO | ECHONL | ICANON | ISIG | IEXTEN);
.c_lflag = ISIG | ICANON | ECHO | ECHOE | ECHOK |
termios->c_lflag = ISIG | ICANON;
termios->c_lflag &= ~(ISIG | ICANON);
| ISIG /* disable interrupt, quit, and suspend
| ISIG /* disable interrupt, quit, and suspend special characters */
#define L_ISIG(tty) _L_FLAG((tty), ISIG)