aboutsummaryrefslogtreecommitdiffstats
path: root/man3/stdio_ext.3
diff options
context:
space:
mode:
authorMichael Kerrisk <mtk.manpages@gmail.com>2007-04-12 22:42:49 +0000
committerMichael Kerrisk <mtk.manpages@gmail.com>2007-04-12 22:42:49 +0000
commitc13182efa3b3d77f2563034c8212c0ca798243ca (patch)
treee7652b26018b7c22cd6a4e4b41404dfaab911303 /man3/stdio_ext.3
parent4174ff5658082832c2ed511720f18881b3a80a34 (diff)
downloadman-pages-c13182efa3b3d77f2563034c8212c0ca798243ca.tar.gz
Wrapped long lines, wrapped at sentence boundaries; stripped trailing
white space.
Diffstat (limited to 'man3/stdio_ext.3')
-rw-r--r--man3/stdio_ext.316
1 files changed, 10 insertions, 6 deletions
diff --git a/man3/stdio_ext.3 b/man3/stdio_ext.3
index b9ecfff4a8..58a2eac6c2 100644
--- a/man3/stdio_ext.3
+++ b/man3/stdio_ext.3
@@ -8,7 +8,7 @@
.\" manual under the conditions for verbatim copying, provided that the
.\" entire resulting derived work is distributed under the terms of a
.\" permission notice identical to this one.
-.\"
+.\"
.\" Since the Linux kernel and libraries are constantly changing, this
.\" manual page may be incorrect or out-of-date. The author(s) assume no
.\" responsibility for errors or omissions, or for damages resulting from
@@ -16,7 +16,7 @@
.\" have taken the same level of care in the production of this manual,
.\" which is licensed free of charge, as they might when working
.\" professionally.
-.\"
+.\"
.\" Formatted or processed versions of this manual, if unaccompanied by
.\" the source, must acknowledge the copyright and authors of this work.
.\"
@@ -94,13 +94,15 @@ operation, and zero otherwise.
The
.BR __fsetlocking ()
function can be used to select the desired type of locking on the stream.
-It returns the current type. The
+It returns the current type.
+The
.I type
parameter can take the following three values:
.TP
.B FSETLOCKING_INTERNAL
Perform implicit locking around every operation on the given stream
-(except for the *_unlocked ones). This is the default.
+(except for the *_unlocked ones).
+This is the default.
.TP
.B FSETLOCKING_BYCALLER
The caller will take care of the locking (possibly using
@@ -109,11 +111,13 @@ in case there is more than one thread), and the stdio routines
will not do locking until the state is reset to FSETLOCKING_INTERNAL.
.TP
.B FSETLOCKING_QUERY
-Don't change the type of locking. (Only return it.)
+Don't change the type of locking.
+(Only return it.)
.LP
The
.BR _flushlbf ()
-function flushes all line-buffered streams. (Presumably so that
+function flushes all line-buffered streams.
+(Presumably so that
output to a terminal is forced out, say before reading keyboard input.)
.LP
The