From 416f52f3e86aabd2ee266fb997cf3e9c90249644 Mon Sep 17 00:00:00 2001 From: Bryce Denney Date: Thu, 17 May 2001 06:44:06 +0000 Subject: [PATCH] - comment out 2 lines with IXOFF and TCSAFLUSH for FreeBSD, at request of Maxim Sobolev who sent me patches. --- bochs/iodev/serial.cc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/bochs/iodev/serial.cc b/bochs/iodev/serial.cc index f9026f2a4..48ce4fc0d 100644 --- a/bochs/iodev/serial.cc +++ b/bochs/iodev/serial.cc @@ -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);