runtty 625 src/dps8/dps8_console.c struct termios runtty; runtty 626 src/dps8/dps8_console.c runtty = ttyTermios; runtty 627 src/dps8/dps8_console.c runtty.c_oflag &= (unsigned int) ~OPOST; /* no output edit */ runtty 628 src/dps8/dps8_console.c tcsetattr (0, TCSAFLUSH, & runtty); runtty 2115 src/simh/sim_console.c struct sgttyb cmdtty, runtty; /* V6/V7 stty data */ runtty 2130 src/simh/sim_console.c runtty = cmdtty; /* initial run state */ runtty 2131 src/simh/sim_console.c runtty.sg_flags = cmdtty.sg_flags & ~(ECHO|CRMOD) | CBREAK; runtty 2151 src/simh/sim_console.c if (ioctl (0, TIOCSETP, &runtty) < 0) runtty 2217 src/simh/sim_console.c struct termios cmdtty, runtty; runtty 2225 src/simh/sim_console.c runtty = cmdtty; runtty 2226 src/simh/sim_console.c runtty.c_lflag = runtty.c_lflag & ~(ECHO | ICANON); /* no echo or edit */ runtty 2227 src/simh/sim_console.c runtty.c_oflag = runtty.c_oflag & ~OPOST; /* no output edit */ runtty 2228 src/simh/sim_console.c runtty.c_iflag = runtty.c_iflag & ~ICRNL; /* no cr conversion */ runtty 2229 src/simh/sim_console.c runtty.c_cc[VINTR] = sim_int_char; /* interrupt */ runtty 2230 src/simh/sim_console.c runtty.c_cc[VQUIT] = 0; /* no quit */ runtty 2231 src/simh/sim_console.c runtty.c_cc[VERASE] = 0; runtty 2232 src/simh/sim_console.c runtty.c_cc[VKILL] = 0; runtty 2233 src/simh/sim_console.c runtty.c_cc[VEOF] = 0; runtty 2234 src/simh/sim_console.c runtty.c_cc[VEOL] = 0; runtty 2235 src/simh/sim_console.c runtty.c_cc[VSTART] = 0; /* no host sync */ runtty 2236 src/simh/sim_console.c runtty.c_cc[VSUSP] = 0; runtty 2237 src/simh/sim_console.c runtty.c_cc[VSTOP] = 0; runtty 2239 src/simh/sim_console.c runtty.c_cc[VREPRINT] = 0; /* no specials */ runtty 2242 src/simh/sim_console.c runtty.c_cc[VDISCARD] = 0; runtty 2245 src/simh/sim_console.c runtty.c_cc[VWERASE] = 0; runtty 2248 src/simh/sim_console.c runtty.c_cc[VLNEXT] = 0; runtty 2250 src/simh/sim_console.c runtty.c_cc[VMIN] = 0; /* no waiting */ runtty 2251 src/simh/sim_console.c runtty.c_cc[VTIME] = 0; runtty 2253 src/simh/sim_console.c runtty.c_cc[VDSUSP] = 0; runtty 2256 src/simh/sim_console.c runtty.c_cc[VSTATUS] = 0; runtty 2265 src/simh/sim_console.c runtty.c_cc[VINTR] = sim_int_char; /* in case changed */ runtty 2266 src/simh/sim_console.c if (tcsetattr (0, TCSAFLUSH, &runtty) < 0)