We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d94c018 commit 0c8568fCopy full SHA for 0c8568f
.gitignore
@@ -1,3 +1,6 @@
1
nimcache/
2
nimblecache/
3
htmldocs/
4
+
5
+/tests/megatest*
6
+/outputGotten.txt
threading/channels.nim
@@ -82,6 +82,10 @@ runnableExamples("--threads:on --gc:orc"):
82
when not defined(gcArc) and not defined(gcOrc) and not defined(nimdoc):
83
{.error: "This channel implementation requires --gc:arc or --gc:orc".}
84
85
+when defined(nimPreviewSlimSystem):
86
+ import std/typedthreads
87
+ import std/assertions
88
89
import std/[locks, atomics, isolation]
90
import system/ansi_c
91
0 commit comments