summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--changelog.md3
-rw-r--r--lib/posix/linux.nim2
2 files changed, 4 insertions, 1 deletions
diff --git a/changelog.md b/changelog.md
index 9ebc3bdaa..8f5fcf95c 100644
--- a/changelog.md
+++ b/changelog.md
@@ -182,6 +182,9 @@
 - Removed deprecated `std/posix.CMSG_SPACE` and `std/posix.CMSG_LEN` that takes wrong argument types.
 - Removed deprecated `osproc.poDemon`, symbol with typo.
 
+- Removed deprecated `posix.CLONE_STOPPED`.
+
+
 ## Language changes
 
 - [Tag tracking](https://nim-lang.github.io/Nim/manual.html#effect-system-tag-tracking) supports the definition of forbidden tags by the `.forbids` pragma
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;