summaryrefslogtreecommitdiff
path: root/manual
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>1994-10-24 04:55:06 +0000
committerRoland McGrath <roland@gnu.org>1994-10-24 04:55:06 +0000
commit0c38f2ee8757003bd8cc0033ca9a1ccf725ee250 (patch)
tree42a5579dd978c3f7487e7929aee864efa34fd631 /manual
parentc9b419b2f6e94db3d41aec88818e424955bfa0a9 (diff)
Removed useless comments.
Diffstat (limited to 'manual')
-rw-r--r--manual/io.texi2
-rw-r--r--manual/llio.texi10
2 files changed, 3 insertions, 9 deletions
diff --git a/manual/io.texi b/manual/io.texi
index e2790b341a..a228125eca 100644
--- a/manual/io.texi
+++ b/manual/io.texi
@@ -253,8 +253,6 @@ name is located in the @dfn{root directory} of the process (usually all
processes on the system have the same root directory). Such a file name
is called an @dfn{absolute file name}.
@c !!! xref here to chroot, if we ever document chroot. -rm
-@c ??? I don't like the idea of encouraging smoking--rms.
-@c !!! What the hell is that bad pun supposed to mean? I don't get it. -rm
@cindex relative file name
Otherwise, the first component in the file name is located in the
diff --git a/manual/llio.texi b/manual/llio.texi
index 437fd3d222..81701741d6 100644
--- a/manual/llio.texi
+++ b/manual/llio.texi
@@ -393,7 +393,6 @@ process to block on output is writing to a terminal device that supports
flow control, where output has been suspended by receipt of a STOP
character.
-@c ??? This is a change yet to be made in the library.
@strong{Compatibility Note:} Most versions of BSD Unix use a different
error code for this: @code{EWOULDBLOCK}. In the GNU library,
@code{EWOULDBLOCK} is an alias for @code{EAGAIN}, so it doesn't matter
@@ -621,8 +620,6 @@ The return value is the new stream. If the stream cannot be created
(for example, if the modes for the file indicated by the file descriptor
do not permit the access specified by the @var{opentype} argument), a
null pointer is returned instead.
-@c ??? The library does not currently detect the mismatch.
-@c ??? It ought to. It can check the descriptor using fcntl F_GETFL.
@end deftypefun
For an example showing the use of the @code{fdopen} function,
@@ -864,7 +861,6 @@ fixed maximum number, @code{FD_SETSIZE} is at least that number. On
some systems, including GNU, there is no absolute limit on the number of
descriptors open, but this macro still has a constant value which
controls the number of bits in an @code{fd_set}.
-@c ??? xref needed here to setrlimit once we document that.
@end deftypevr
@comment sys/types.h
@@ -1129,9 +1125,9 @@ The @var{next-filedes} argument is invalid.
@item EMFILE
There are no more file descriptors available---your program is already
-using the maximum.
-@c !!! in GNU and 4.4, this can be fixed with setrlimit RLIM_OFILES;
-@c xref to there.
+using the maximum. In BSD and GNU, the maximum is controlled by a
+resource limit that can be changed; @pxref{Limits on Resources}, for
+more information about the @code{RLIMIT_NOFILE} limit.
@end table
@code{ENFILE} is not a possible error code for @code{dup2} because