summaryrefslogtreecommitdiff
path: root/pod/perlfunc.pod
diff options
context:
space:
mode:
authorGurusamy Sarathy <gsar@cpan.org>2000-02-19 07:42:12 +0000
committerGurusamy Sarathy <gsar@cpan.org>2000-02-19 07:42:12 +0000
commit8d2a6795a8433e9623ccf677a19bf470170549e9 (patch)
treef789cca7748a36e23793a7383a34bb79824a9f82 /pod/perlfunc.pod
parentaa6ffa1650ac66b040000b508f9d85569d9fe839 (diff)
downloadperl-8d2a6795a8433e9623ccf677a19bf470170549e9.tar.gz
set close-on-exec flag on sockets too, like we do for files
and pipes p4raw-id: //depot/perl@5137
Diffstat (limited to 'pod/perlfunc.pod')
-rw-r--r--pod/perlfunc.pod12
1 files changed, 12 insertions, 0 deletions
diff --git a/pod/perlfunc.pod b/pod/perlfunc.pod
index e8f4fe0880..39798fdf8f 100644
--- a/pod/perlfunc.pod
+++ b/pod/perlfunc.pod
@@ -376,6 +376,10 @@ Accepts an incoming socket connect, just as the accept(2) system call
does. Returns the packed address if it succeeded, false otherwise.
See the example in L<perlipc/"Sockets: Client/Server Communication">.
+On systems that support a close-on-exec flag on files, the flag will
+be set for the newly opened file descriptor, as determined by the
+value of $^F. See L<perlvar/$^F>.
+
=item alarm SECONDS
=item alarm
@@ -4006,6 +4010,10 @@ the system call of the same name. You should C<use Socket> first
to get the proper definitions imported. See the examples in
L<perlipc/"Sockets: Client/Server Communication">.
+On systems that support a close-on-exec flag on files, the flag will
+be set for the newly opened file descriptor, as determined by the
+value of $^F. See L<perlvar/$^F>.
+
=item socketpair SOCKET1,SOCKET2,DOMAIN,TYPE,PROTOCOL
Creates an unnamed pair of sockets in the specified domain, of the
@@ -4013,6 +4021,10 @@ specified type. DOMAIN, TYPE, and PROTOCOL are specified the same as
for the system call of the same name. If unimplemented, yields a fatal
error. Returns true if successful.
+On systems that support a close-on-exec flag on files, the flag will
+be set for the newly opened file descriptors, as determined by the value
+of $^F. See L<perlvar/$^F>.
+
Some systems defined C<pipe> in terms of C<socketpair>, in which a call
to C<pipe(Rdr, Wtr)> is essentially: