mirror of
https://github.com/nim-lang/Nim.git
synced 2026-04-19 05:50:30 +00:00
rename std/threads to std/typedthreads (#20850)
* rename `std/threads` to `std/oldthreads` * fixes tests * rename to `typedthreads` * changelog
This commit is contained in:
@@ -15,7 +15,7 @@
|
||||
- `std/formatfloat`
|
||||
- `std/objectdollar`
|
||||
- `std/widestrs`
|
||||
- `std/threads`
|
||||
- `std/typedthreads`
|
||||
|
||||
In the future, these definitions will be removed from the `system` module,
|
||||
and their respective modules will have to be imported to use them.
|
||||
|
||||
@@ -23,7 +23,7 @@ when not compileOption("threads"):
|
||||
import cpuinfo, cpuload, locks, os
|
||||
|
||||
when defined(nimPreviewSlimSystem):
|
||||
import std/[assertions, threads]
|
||||
import std/[assertions, typedthreads]
|
||||
|
||||
{.push stackTrace:off.}
|
||||
|
||||
|
||||
@@ -2071,9 +2071,9 @@ when not defined(js):
|
||||
when hostOS != "standalone":
|
||||
include system/threadimpl
|
||||
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
|
||||
{.deprecated: "threads is about to move out of system; use `-d:nimPreviewSlimSystem` and import `std/typedthreads`".}
|
||||
import std/typedthreads
|
||||
export typedthreads
|
||||
|
||||
elif not defined(nogc) and not defined(nimscript):
|
||||
when not defined(useNimRtl) and not defined(createNimRtl): initStackBottom()
|
||||
|
||||
@@ -30,7 +30,7 @@ import compiler / [options, commands, modules, sem,
|
||||
pathutils]
|
||||
|
||||
when defined(nimPreviewSlimSystem):
|
||||
import std/threads
|
||||
import std/typedthreads
|
||||
|
||||
when defined(windows):
|
||||
import winlean
|
||||
|
||||
@@ -9,7 +9,7 @@ discard """
|
||||
import std/atomics
|
||||
|
||||
when defined(nimPreviewSlimSystem):
|
||||
import std/[assertions, threads]
|
||||
import std/[assertions, typedthreads]
|
||||
|
||||
const MemBlockSize = 256
|
||||
|
||||
|
||||
@@ -10,7 +10,7 @@ import stdtest/testutils
|
||||
import std/[assertions]
|
||||
|
||||
when not defined(js):
|
||||
import std/threads
|
||||
import std/typedthreads
|
||||
|
||||
# "LATIN CAPITAL LETTER AE" in UTF-8 (0xc386)
|
||||
const unicodeUtf8 = "\xc3\x86"
|
||||
|
||||
@@ -5,7 +5,7 @@ discard """
|
||||
"""
|
||||
|
||||
import os, net, nativesockets, asyncdispatch
|
||||
import std/[assertions, threads]
|
||||
import std/[assertions, typedthreads]
|
||||
|
||||
## Test for net.dial
|
||||
|
||||
|
||||
@@ -58,7 +58,7 @@ proc c_getenv(env: cstring): cstring {.importc: "getenv", header: "<stdlib.h>".}
|
||||
|
||||
when not defined(js) and not defined(nimscript):
|
||||
when defined(nimPreviewSlimSystem):
|
||||
import std/threads
|
||||
import std/typedthreads
|
||||
block: # bug #18533
|
||||
var thr: Thread[void]
|
||||
proc threadFunc {.thread.} = putEnv("foo", "fooVal2")
|
||||
|
||||
@@ -4,7 +4,7 @@ discard """
|
||||
disabled: "openbsd"
|
||||
"""
|
||||
# disabled: pending bug #15713
|
||||
import std/[net, nativesockets, assertions, threads]
|
||||
import std/[net, nativesockets, assertions, typedthreads]
|
||||
|
||||
when defined(posix): import os, posix
|
||||
else:
|
||||
|
||||
@@ -10,7 +10,7 @@ Crashes before getting here!
|
||||
"""
|
||||
|
||||
import std/os
|
||||
import std/threads
|
||||
import std/typedthreads
|
||||
|
||||
proc whatever() {.thread, nimcall.} =
|
||||
echo("TEST")
|
||||
|
||||
Reference in New Issue
Block a user