]> Sergey Matveev's repositories - public-inbox.git/commitdiff
git|gcf2: switch to awaitpid
authorEric Wong <e@80x24.org>
Tue, 17 Jan 2023 07:19:04 +0000 (07:19 +0000)
committerEric Wong <e@80x24.org>
Wed, 18 Jan 2023 23:25:59 +0000 (23:25 +0000)
This is a trivial change compared to Qspawn in the previous
commit.

lib/PublicInbox/Gcf2Client.pm
lib/PublicInbox/Git.pm

index 09c3aa06f6be8a081497e74a75e873b904c666e6..a49e2aad380129ce2fc8c3b1c5b7d267d8c8aed4 100644 (file)
@@ -1,4 +1,4 @@
-# Copyright (C) 2020-2021 all contributors <meta@public-inbox.org>
+# Copyright (C) all contributors <meta@public-inbox.org>
 # License: AGPL-3.0+ <https://www.gnu.org/licenses/agpl-3.0.txt>
 
 # connects public-inbox processes to PublicInbox::Gcf2::loop()
@@ -10,6 +10,7 @@ use PublicInbox::Gcf2; # fails if Inline::C or libgit2-dev isn't available
 use PublicInbox::Spawn qw(spawn);
 use Socket qw(AF_UNIX SOCK_STREAM);
 use PublicInbox::Syscall qw(EPOLLIN EPOLLET);
+use PublicInbox::DS qw(awaitpid);
 # fields:
 #      sock => socket to Gcf2::loop
 # The rest of these fields are compatible with what PublicInbox::Git
@@ -30,7 +31,7 @@ sub new  {
        $rdr->{0} = $rdr->{1} = $s2;
        my $cmd = [$^X, qw[-MPublicInbox::Gcf2 -e PublicInbox::Gcf2::loop]];
        $self->{'pid.owner'} = $$;
-       $self->{pid} = spawn($cmd, $env, $rdr);
+       awaitpid($self->{pid} = spawn($cmd, $env, $rdr), undef);
        $s1->blocking(0);
        $self->{inflight} = [];
        $self->{in} = $s1;
index 96627daa19735106f31308be686d8c37961661b4..c9ed48be9397231e81bc80ee2e7a590785153b72 100644 (file)
@@ -21,7 +21,7 @@ use PublicInbox::Tmpfile;
 use IO::Poll qw(POLLIN);
 use Carp qw(croak carp);
 use Digest::SHA ();
-use PublicInbox::DS qw(dwaitpid);
+use PublicInbox::DS qw(awaitpid);
 our @EXPORT_OK = qw(git_unquote git_quote);
 our $PIPE_BUFSIZ = 65536; # Linux default
 our $in_cleanup;
@@ -138,7 +138,7 @@ sub _bidi_pipe {
                $rdr->{2} = $fh;
        }
        my ($in_r, $p) = popen_rd(\@cmd, undef, $rdr);
-       $self->{$pid} = $p;
+       awaitpid($self->{$pid} = $p, undef);
        $self->{"$pid.owner"} = $$;
        $out_w->autoflush(1);
        if ($^O eq 'linux') { # 1031: F_SETPIPE_SZ
@@ -357,9 +357,9 @@ sub _destroy {
        delete @$self{($rbuf, $in, $out)};
        delete $self->{$err} if $err; # `err_c'
 
-       # GitAsyncCat::event_step may delete {pid}
-       my $p = delete $self->{$pid} or return;
-       dwaitpid($p) if $$ == $self->{"$pid.owner"};
+       # GitAsyncCat::event_step may delete {$pid}
+       my $p = delete($self->{$pid}) // return;
+       awaitpid($p) if $$ == $self->{"$pid.owner"};
 }
 
 sub async_abort ($) {