Date: Sun, 11 Jun 2006 08:11:28 GMT From: Hans Petter Selasky <hselasky@FreeBSD.org> To: Perforce Change Reviews <perforce@FreeBSD.org> Subject: PERFORCE change 98972 for review Message-ID: <200606110811.k5B8BS1D046858@repoman.freebsd.org>
next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=98972 Change 98972 by hselasky@hselasky_mini_itx on 2006/06/11 08:10:48 Bugfix: Make sure that the "ucom_open()" function does not return when "ttysleep()" times out. Affected files ... .. //depot/projects/usb/src/sys/dev/usb/ucom.c#5 edit Differences ... ==== //depot/projects/usb/src/sys/dev/usb/ucom.c#5 (text+ko) ==== @@ -262,7 +262,7 @@ */ error = ttysleep(tp, tp, PCATCH | TTIPRI, "ucomsd", hz); - if (error) { + if (error && (error != EWOULDBLOCK)) { return error; }
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200606110811.k5B8BS1D046858>