rename std/threads to std/typedthreads (#20850)

* rename `std/threads` to `std/oldthreads`

* fixes tests

* rename to `typedthreads`

* changelog
This commit is contained in:
ringabout
2022-11-16 23:35:20 +08:00
committed by GitHub
parent 06cd15663d
commit e03a178bff
11 changed files with 12 additions and 12 deletions

View File

@@ -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.

View File

@@ -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.}

View File

@@ -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()

View File

@@ -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

View File

@@ -9,7 +9,7 @@ discard """
import std/atomics
when defined(nimPreviewSlimSystem):
import std/[assertions, threads]
import std/[assertions, typedthreads]
const MemBlockSize = 256

View File

@@ -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"

View File

@@ -5,7 +5,7 @@ discard """
"""
import os, net, nativesockets, asyncdispatch
import std/[assertions, threads]
import std/[assertions, typedthreads]
## Test for net.dial

View File

@@ -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")

View File

@@ -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:

View File

@@ -10,7 +10,7 @@ Crashes before getting here!
"""
import std/os
import std/threads
import std/typedthreads
proc whatever() {.thread, nimcall.} =
echo("TEST")