From owner-cvs-sys Sat Feb 1 08:04:24 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id IAA27759 for cvs-sys-outgoing; Sat, 1 Feb 1997 08:04:24 -0800 (PST) Received: (from bde@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id IAA27750; Sat, 1 Feb 1997 08:04:21 -0800 (PST) Date: Sat, 1 Feb 1997 08:04:21 -0800 (PST) From: Bruce Evans Message-Id: <199702011604.IAA27750@freefall.freebsd.org> To: CVS-committers, cvs-all, cvs-sys Subject: cvs commit: src/sys/i386/isa sio.c Sender: owner-cvs-sys@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk bde 97/02/01 08:04:20 Modified: sys/i386/isa sio.c Log: Fixed the SMC fifo bug fix. sioopen() hung while input was streaming in with <= 100 usec between each character arrival time. This didn't happen until rev.1.75 of clock.c because DELAY(100) used to delay for closer to 80 usec than 100 usec, and the minimum time between character arrivals is 87.8 usec at the maximum supported speed of 115200 bps 8N1. Clear DCD timestamp flag on close (the input timestamp flag is already cleared). Revision Changes Path 1.158 +15 -3 src/sys/i386/isa/sio.c