diff options
author | Araq <rumpf_a@web.de> | 2019-09-20 20:22:37 +0200 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2019-09-21 06:43:37 +0200 |
commit | 5abe8804698f403ab9cd10f0d8f8ba92bc15b68c (patch) | |
tree | 03502f61bb63a22bb70216f06e6f22c97aa936f0 /lib/pure/coro.nim | |
parent | 9776f926a22aa28075fdbaf2f5ef28c7fba15c02 (diff) | |
download | Nim-5abe8804698f403ab9cd10f0d8f8ba92bc15b68c.tar.gz |
last stdlib cleanups
Diffstat (limited to 'lib/pure/coro.nim')
-rw-r--r-- | lib/pure/coro.nim | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/pure/coro.nim b/lib/pure/coro.nim index 4b446f44c..2a58554e3 100644 --- a/lib/pure/coro.nim +++ b/lib/pure/coro.nim @@ -6,6 +6,7 @@ # See the file "copying.txt", included in this # distribution, for details about the copyright. # + ## Nim coroutines implementation, supports several context switching methods: ## -------- ------------ ## ucontext available on unix and alike (default) @@ -17,6 +18,8 @@ ## -d:nimCoroutinesUcontext Use ucontext backend. ## -d:nimCoroutinesSetjmp Use setjmp backend. ## -d:nimCoroutinesSetjmpBundled Use bundled setjmp implementation. +## +## Unstable API. when not nimCoroutines and not defined(nimdoc): when defined(noNimCoroutines): |