mirror of
https://github.com/nim-lang/Nim.git
synced 2026-02-13 06:43:52 +00:00
Always use 0x40 for POSIX_SPAWN_USEVFORK
This commit is contained in:
@@ -1732,12 +1732,10 @@ when hasSpawnH:
|
||||
when defined(linux):
|
||||
# better be safe than sorry; Linux has this flag, macosx doesn't, don't
|
||||
# know about the other OSes
|
||||
when defined(tcc):
|
||||
# TCC doesn't define __USE_GNU, so we can't get the magic number from
|
||||
# spawn.h
|
||||
const POSIX_SPAWN_USEVFORK* = cint(0x40)
|
||||
else:
|
||||
var POSIX_SPAWN_USEVFORK* {.importc, header: "<spawn.h>".}: cint
|
||||
|
||||
# Non-GNU systems like TCC and musl-libc don't define __USE_GNU, so we
|
||||
# can't get the magic number from spawn.h
|
||||
const POSIX_SPAWN_USEVFORK* = cint(0x40)
|
||||
else:
|
||||
# macosx lacks this, so we define the constant to be 0 to not affect
|
||||
# OR'ing of flags:
|
||||
|
||||
Reference in New Issue
Block a user