Merge pull request #8040 from NixOS/macos-warning

Fix macOS warning
This commit is contained in:
Eelco Dolstra
2023-03-13 14:15:54 +01:00
committed by GitHub

View File

@@ -1070,12 +1070,14 @@ static pid_t doFork(bool allowVfork, std::function<void()> fun)
}
#if __linux__
static int childEntry(void * arg)
{
auto main = (std::function<void()> *) arg;
(*main)();
return 1;
}
#endif
pid_t startProcess(std::function<void()> fun, const ProcessOptions & options)