add a comment for FILE* buffering

This commit is contained in:
Roger Cole
1992-01-07 08:07:25 +00:00
parent 44bbe3dd79
commit eb11acae0a

View File

@@ -29,6 +29,7 @@
* .01 06-18-91 rac installed in SCCS
* .02 09-05-91 joh updated for v5 vxWorks
* included systime.h for utime.h
* .03 12-08-91 rac added a comment for ezsFopenToFd
*
* make options
* -DvxWorks makes a version for VxWorks
@@ -315,6 +316,13 @@ int portNum; /* I number of service's port */
* SEE ALSO
* ezsFreopenToFd(), ezsFrestoreToOldFd()
*
* NOTES
* 1. For input streams in a client monitoring the output of a server,
* it will often be useful to set the stream to unbuffered:
* FILE *myIn;
* ezsFopenToFd(&myIn, socket);
* setbuf(myIn, NULL);
*
*-*/
int
ezsFopenToFd(pFp, pFd)