summaryrefslogtreecommitdiffstats
path: root/c/src/lib/ChangeLog
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2001-08-16 20:04:19 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2001-08-16 20:04:19 +0000
commit4b3c197fc0912a22b07affd7caef344ce301840a (patch)
treeb4e9b758d389c5c1dc6dd9eb2a850488d5dc8b3b /c/src/lib/ChangeLog
parent2001-08-16 Joel Sherrill <joel@OARcorp.com> (diff)
downloadrtems-4b3c197fc0912a22b07affd7caef344ce301840a.tar.bz2
2001-08-16 Mike Siers <mikes@poliac.com>
* libc/termios.c: Fix a bug in the termios implementation in the following scenario: The General Terminal Interface document that me states that if VMIN = 0 and VTIME = 0, then read() should return the minimum of two values: a) number of bytes available b) number of bytes requested (I assume from the read call) The current implementation of the fillBufferQueue() in termios.c is always return 1 character with these setting values. I know the termios buffer has more than one character available and my read() call is requesting 1024 bytes.
Diffstat (limited to '')
-rw-r--r--c/src/lib/ChangeLog15
1 files changed, 15 insertions, 0 deletions
diff --git a/c/src/lib/ChangeLog b/c/src/lib/ChangeLog
index a4d4064130..4581a619bd 100644
--- a/c/src/lib/ChangeLog
+++ b/c/src/lib/ChangeLog
@@ -1,3 +1,18 @@
+2001-08-16 Mike Siers <mikes@poliac.com>
+
+ * libc/termios.c: Fix a bug in the termios implementation in
+ the following scenario:
+ The General Terminal Interface document that me states that
+ if VMIN = 0 and VTIME = 0, then read() should return the minimum
+ of two values:
+ a) number of bytes available
+ b) number of bytes requested (I assume from the read call)
+
+ The current implementation of the fillBufferQueue() in termios.c is
+ always return 1 character with these setting values. I know the
+ termios buffer has more than one character available and my read()
+ call is requesting 1024 bytes.
+
2001-08-09 Fernando-Ruiz Casas <correo@fernando-ruiz.com>
* libc/getgrent.c, libc/getpwent.c: the 'ls' and more related command