mirror of
https://github.com/NixOS/nix
synced 2025-07-02 17:41:48 +02:00
Remove maybeVfork
This commit is contained in:
parent
04170d06bf
commit
7911e4c27a
5 changed files with 4 additions and 18 deletions
|
@ -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) {
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue