rename channels to channels_builtin (#17330)

* improve test coverage for isolation

* a bit better

* rename channels to channels_builtin
This commit is contained in:
flywind
2021-03-12 20:04:32 +08:00
committed by GitHub
parent d97bf4f1c8
commit 2e730f1452
7 changed files with 6 additions and 6 deletions

View File

@@ -46,7 +46,7 @@ runnableExamples:
## See also
## ========
## * `lists module <lists.html>`_ for singly and doubly linked lists and rings
## * `channels module <channels.html>`_ for inter-thread communication
## * `channels module <channels_builtin.html>`_ for inter-thread communication
import std/private/since

View File

@@ -14,7 +14,7 @@
## See also
## ========
## * `threads module <threads.html>`_ for basic thread support
## * `channels module <channels.html>`_ for message passing support
## * `channels module <channels_builtin.html>`_ for message passing support
## * `locks module <locks.html>`_ for locks and condition variables
## * `asyncdispatch module <asyncdispatch.html>`_ for asynchronous IO

View File

@@ -2385,7 +2385,7 @@ when notJSnotNims and hasAlloc:
include "system/repr"
when notJSnotNims and hasThreadSupport and hostOS != "standalone":
include "system/channels"
include "system/channels_builtin"
when notJSnotNims and hostOS != "standalone":