perlfunc/fileno: Document the -1 retval
authorFather Chrysostomos <sprout@cpan.org>
Tue, 22 Feb 2011 20:57:00 +0000 (12:57 -0800)
committerFather Chrysostomos <sprout@cpan.org>
Wed, 23 Feb 2011 01:46:50 +0000 (17:46 -0800)
pod/perlfunc.pod

index 149c44b..891d938 100644 (file)
@@ -1938,7 +1938,11 @@ on your own, though.
 X<fileno>
 
 Returns the file descriptor for a filehandle, or undefined if the
-filehandle is not open.  This is mainly useful for constructing
+filehandle is not open.  If there is no real file descriptor at the OS
+level, as can happen with filehandles connected to memory objects via
+C<open> with a reference for the third argument, -1 is returned.
+
+This is mainly useful for constructing
 bitmaps for C<select> and low-level POSIX tty-handling operations.
 If FILEHANDLE is an expression, the value is taken as an indirect
 filehandle, generally its name.
@@ -1950,10 +1954,6 @@ same underlying descriptor:
         print "THIS and THAT are dups\n";
     }
 
-(Filehandles connected to memory objects via new features of C<open> may
-return undefined even though they are open.)
-
-
 =item flock FILEHANDLE,OPERATION
 X<flock> X<lock> X<locking>