diff options
Diffstat (limited to 'lib/system.nim')
-rw-r--r-- | lib/system.nim | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/lib/system.nim b/lib/system.nim index ff2bff45f..68645cea0 100644 --- a/lib/system.nim +++ b/lib/system.nim @@ -2093,9 +2093,10 @@ when not defined(js): when hasThreadSupport: when hostOS != "standalone": include system/threadimpl - - import std/threads - export threads + when not defined(nimPreviewSlimSystem): + {.deprecated: "threads is about to move out of system; use `-d:nimPreviewSlimSystem` and import `std/threads`".} + import std/threads + export threads elif not defined(nogc) and not defined(nimscript): when not defined(useNimRtl) and not defined(createNimRtl): initStackBottom() |