]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
Removed useless comments.
authorRoland McGrath <roland@gnu.org>
Mon, 24 Oct 1994 04:55:06 +0000 (04:55 +0000)
committerRoland McGrath <roland@gnu.org>
Mon, 24 Oct 1994 04:55:06 +0000 (04:55 +0000)
manual/io.texi
manual/llio.texi

index e2790b341aa06ad87fc1d8ff196c3bf27a21847f..a228125eca0d758ee3829099c1e8fbe1d1503292 100644 (file)
@@ -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
index 437fd3d22292826471d2d70d033dce5dee678b1f..81701741d6d1aab9927eab8c76bba24ef65fc068 100644 (file)
@@ -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