- comment out 2 lines with IXOFF and TCSAFLUSH for FreeBSD, at request of

Maxim Sobolev who sent me patches.
This commit is contained in:
Bryce Denney 2001-05-17 06:44:06 +00:00
parent 8a015b3bdc
commit 416f52f3e8
1 changed files with 4 additions and 4 deletions

View File

@ -83,10 +83,10 @@ bx_serial_c::bx_serial_c(void)
// ctl-C will be delivered to the serial port
term_new.c_iflag |= IGNBRK;
term_new.c_iflag &= ~BRKINT;
#endif
term_new.c_iflag |= IXOFF;
tcsetattr(0, TCSAFLUSH, &term_new);
#endif
#endif /* !def TRUE_CTLC */
//term_new.c_iflag |= IXOFF;
//tcsetattr(0, TCSAFLUSH, &term_new);
#endif /* def __FreeBSD__ */
// nothing for now
#if USE_RAW_SERIAL
raw = new serial_raw("/dev/cua0", SIGUSR1);