diff options
author | Juan Carlos <juancarlospaco@gmail.com> | 2022-12-05 02:53:40 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-05 06:53:40 +0100 |
commit | 1b5e03f975a9e02c217ece12b02ba483fa1e5cc0 (patch) | |
tree | 7aded9829281062f61a3c020a6aa2a1d74c621e7 /lib/posix | |
parent | 78b387d948a614feffad9daae3e9920b6f1ff813 (diff) | |
download | Nim-1b5e03f975a9e02c217ece12b02ba483fa1e5cc0.tar.gz |
Remove deprecated posix.CLONE_STOPPED (#21012)
* Remove deprecated CLONE_STOPPED * Remove deprecated CLONE_STOPPED
Diffstat (limited to 'lib/posix')
-rw-r--r-- | lib/posix/linux.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/posix/linux.nim b/lib/posix/linux.nim index 2d6702e87..9a5e9f062 100644 --- a/lib/posix/linux.nim +++ b/lib/posix/linux.nim @@ -29,7 +29,7 @@ const CLONE_NEWPID* = 0x20000000'i32 CLONE_NEWNET* = 0x40000000'i32 CLONE_IO* = 0x80000000'i32 - CLONE_STOPPED* {.deprecated.} = 0x02000000'i32 + # fn should be of type proc (a2: pointer) {.cdecl.} proc clone*(fn: pointer; child_stack: pointer; flags: cint; |