about summary refs log tree commit homepage
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2015-08-28 00:21:46 +0000
committerEric Wong <e@80x24.org>2015-08-28 00:50:59 +0000
commit608b1e03008b44d7db88bee2b5b6b46cda7583e2 (patch)
tree283c5f90dd264606a1ce8ddb9f1336e2cac8b864
parentc28dad3b89f1fc08c553e4efddb2e6740e4c6173 (diff)
downloadpublic-inbox-608b1e03008b44d7db88bee2b5b6b46cda7583e2.tar.gz
Unless some idiot raises $^F, we should not have to care about
the close-on-exec flag.  Everything since Perl 3.0 seems to set
it by default, and 5.6 got more consistent about it.
-rw-r--r--lib/PublicInbox/GitCatFile.pm9
1 files changed, 0 insertions, 9 deletions
diff --git a/lib/PublicInbox/GitCatFile.pm b/lib/PublicInbox/GitCatFile.pm
index 9bffce2a..142491e3 100644
--- a/lib/PublicInbox/GitCatFile.pm
+++ b/lib/PublicInbox/GitCatFile.pm
@@ -6,7 +6,6 @@
 package PublicInbox::GitCatFile;
 use strict;
 use warnings;
-use Fcntl qw(F_GETFD F_SETFD FD_CLOEXEC);
 use POSIX qw(dup2);
 
 sub new {
@@ -14,21 +13,13 @@ sub new {
         bless { git_dir => $git_dir }, $class;
 }
 
-sub set_cloexec {
-        my ($fh) = @_;
-        my $flags = fcntl($fh, F_GETFD, 0) or die "fcntl(F_GETFD): $!\n";
-        fcntl($fh, F_SETFD, $flags | FD_CLOEXEC) or die "fcntl(F_SETFD): $!\n";
-}
-
 sub _cat_file_begin {
         my ($self) = @_;
         return if $self->{pid};
         my ($in_r, $in_w, $out_r, $out_w);
 
         pipe($in_r, $in_w) or die "pipe failed: $!\n";
-        set_cloexec($_) foreach ($in_r, $in_w);
         pipe($out_r, $out_w) or die "pipe failed: $!\n";
-        set_cloexec($_) foreach ($out_r, $out_w);
 
         my @cmd = ('git', "--git-dir=$self->{git_dir}", qw(cat-file --batch));
         my $pid = fork;