diff options
author | andreas_kupries <akupries@shaw.ca> | 2004-07-16 22:22:13 (GMT) |
---|---|---|
committer | andreas_kupries <akupries@shaw.ca> | 2004-07-16 22:22:13 (GMT) |
commit | 9b369d038ad87d0350058c8d27e71ee41944c1ea (patch) | |
tree | 58550924ca7a61dd430bbcb5c8914ad27fdb4585 /doc | |
parent | 31ce2014cbb4b8c4e6194604095ca4d2a215f208 (diff) | |
download | tcl-9b369d038ad87d0350058c8d27e71ee41944c1ea.zip tcl-9b369d038ad87d0350058c8d27e71ee41944c1ea.tar.gz tcl-9b369d038ad87d0350058c8d27e71ee41944c1ea.tar.bz2 |
* doc/OpenFileChnl.3: Added description of the behaviour of
Tcl_ReadChars when its 'charsToRead' argument is set to
-1. Fixes [Tcl SF Bug 934511].
Diffstat (limited to 'doc')
-rw-r--r-- | doc/OpenFileChnl.3 | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/doc/OpenFileChnl.3 b/doc/OpenFileChnl.3 index e54972f..dd65367 100644 --- a/doc/OpenFileChnl.3 +++ b/doc/OpenFileChnl.3 @@ -4,7 +4,7 @@ '\" See the file "license.terms" for information on usage and redistribution '\" of this file, and for a DISCLAIMER OF ALL WARRANTIES. '\" -'\" RCS: @(#) $Id: OpenFileChnl.3,v 1.20.2.3 2004/05/17 09:22:11 dkf Exp $ +'\" RCS: @(#) $Id: OpenFileChnl.3,v 1.20.2.4 2004/07/16 22:22:15 andreas_kupries Exp $ .so man.macros .TH Tcl_OpenFileChannel 3 8.3 Tcl "Tcl Library Procedures" .BS @@ -435,6 +435,10 @@ that were stored in \fIreadObjPtr\fR. If an error occurs while reading, the return value is \-1 and \fBTcl_ReadChars\fR records a POSIX error code that can be retrieved with \fBTcl_GetErrno\fR. .PP +Setting \fIcharsToRead\fR to \fB-1\fR will cause the command to read +all characters currently available (non-blocking) or everything until +eof (blocking mode). +.PP The return value may be smaller than the value to read, indicating that less data than requested was available. This is called a \fIshort read\fR. In blocking mode, this can only happen on an end-of-file. In nonblocking mode, |