diff options
author | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2014-06-23T13·15-0400 |
---|---|---|
committer | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2014-07-10T11·35+0200 |
commit | 7911e4c27a0020a61ace13cfdc44de4af02f315e (patch) | |
tree | db7d61bae393b67ed0a57e29aa2cd8ac99d655a1 /src/libstore/build.cc | |
parent | 04170d06bf7d17f882c01d3ab98885e0f3e46d2f (diff) |
Remove maybeVfork
Diffstat (limited to 'src/libstore/build.cc')
-rw-r--r-- | src/libstore/build.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libstore/build.cc b/src/libstore/build.cc index f38cd299403c..70a3effb237a 100644 --- a/src/libstore/build.cc +++ b/src/libstore/build.cc @@ -602,7 +602,7 @@ HookInstance::HookInstance() builderOut.create(); /* Fork the hook. */ - pid = maybeVfork(); + pid = fork(); switch (pid) { case -1: @@ -2781,7 +2781,7 @@ void SubstitutionGoal::tryToRun() const char * * argArr = strings2CharPtrs(args); /* Fork the substitute program. */ - pid = maybeVfork(); + pid = fork(); switch (pid) { |