From ca885bd5905b7faa9ecb7b0eb02476de1d3a7f88 Mon Sep 17 00:00:00 2001 From: Eric Wong Date: Sat, 27 Feb 2016 02:14:23 +0000 Subject: initial spawn implementation using vfork Under Linux, vfork maintains constant performance as parent process size increases. fork needs to prepare pages for copy-on-write, requiring a linear scan of the address space. --- lib/PublicInbox/SpawnPP.pm | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 lib/PublicInbox/SpawnPP.pm (limited to 'lib/PublicInbox/SpawnPP.pm') diff --git a/lib/PublicInbox/SpawnPP.pm b/lib/PublicInbox/SpawnPP.pm new file mode 100644 index 00000000..ae552dd8 --- /dev/null +++ b/lib/PublicInbox/SpawnPP.pm @@ -0,0 +1,33 @@ +# Copyright (C) 2016 all contributors +# License: AGPL-3.0+ +package PublicInbox::SpawnPP; +use strict; +use warnings; +use POSIX qw(dup2); + +# Pure Perl implementation for folks that do not use Inline::C +sub public_inbox_fork_exec ($$$$$$) { + my ($in, $out, $err, $f, $cmd, $env) = @_; + my $pid = fork; + if ($pid == 0) { + if ($in != 0) { + dup2($in, 0) or die "dup2 failed for stdin: $!"; + } + if ($out != 1) { + dup2($out, 1) or die "dup2 failed for stdout: $!"; + } + if ($err != 2) { + dup2($err, 2) or die "dup2 failed for stderr$!"; + } + %ENV = (); + foreach my $e (@$env) { + my ($k, $v) = split('=', $e, 2); + $ENV{$k} = $v; + } + exec @$cmd; + exit 1; + } + $pid; +} + +1; -- cgit v1.2.3-24-ge0c7