aboutsummaryrefslogtreecommitdiff
path: root/src/libstore
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2014-06-23 09:15:35 -0400
committerEelco Dolstra <eelco.dolstra@logicblox.com>2014-07-10 13:35:44 +0200
commit7911e4c27a0020a61ace13cfdc44de4af02f315e (patch)
treedb7d61bae393b67ed0a57e29aa2cd8ac99d655a1 /src/libstore
parent04170d06bf7d17f882c01d3ab98885e0f3e46d2f (diff)
Remove maybeVfork
Diffstat (limited to 'src/libstore')
-rw-r--r--src/libstore/build.cc4
-rw-r--r--src/libstore/local-store.cc2
2 files changed, 3 insertions, 3 deletions
diff --git a/src/libstore/build.cc b/src/libstore/build.cc
index f38cd2994..70a3effb2 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) {
diff --git a/src/libstore/local-store.cc b/src/libstore/local-store.cc
index 5d210ae01..08ab269b3 100644
--- a/src/libstore/local-store.cc
+++ b/src/libstore/local-store.cc
@@ -1083,7 +1083,7 @@ void LocalStore::startSubstituter(const Path & substituter, RunningSubstituter &
setSubstituterEnv();
- run.pid = maybeVfork();
+ run.pid = fork();
switch (run.pid) {