osproc: use fork by default on Linux, clone if requested by useClone flag

This commit is contained in:
Michał Zieliński
2014-02-23 21:02:13 +01:00
parent 95eb2b88e6
commit 6712aa6e38

View File

@@ -22,8 +22,6 @@ else:
when defined(linux):
import linux
when not defined(useFork):
const useClone = true
type
TProcess = object of TObject
@@ -663,7 +661,7 @@ elif not defined(useNimRtl):
data.workingDir = workingDir
when defined(posix_spawn) and not defined(useFork) and not defined(useClone):
when defined(posix_spawn) and not defined(useFork) and not defined(useClone) and not defined(linux):
pid = startProcessAuxSpawn(data)
else:
pid = startProcessAuxFork(data)