Source Edit

Nim coroutines implementation, supports several context switching methods:

ucontextavailable on unix and alike (default)
setjmpavailable on unix and alike (x86/64 only)
fibersavailable and required on windows.

-d:nimCoroutines

Required to build this module.

-d:nimCoroutinesUcontext

Use ucontext backend.

-d:nimCoroutinesSetjmp

Use setjmp backend.

-d:nimCoroutinesSetjmpBundled

Use bundled setjmp implementation.

Unstable API.

Timer support for the realtime GC. Based on https://github.com/jckarter/clay/blob/master/compiler/hirestimer.cpp

Imports

coro_detection, os, lists, winlean

Types

  1. CoroutineRef = ref object

CoroutineRef holds a pointer to actual coroutine object. Public API always returns CoroutineRef instead of CoroutinePtr in order to allow holding a reference to coroutine object while it can be safely deallocated by coroutine scheduler loop. In this case Coroutine.reference.coro is set to nil. Public API checks for it being nil and gracefully fails if it is nil. Source Edit

Procs

  1. proc alive(c: CoroutineRef): bool {....raises: [], tags: [], forbids: [].}

Returns true if coroutine has not returned, false otherwise. Source Edit

  1. proc run() {....raises: [], tags: [TimeEffect], forbids: [].}

Starts main coroutine scheduler loop which exits when all coroutines exit. Calling this proc starts execution of first coroutine. Source Edit

  1. proc start(c: proc (); stacksize: int = defaultStackSize): CoroutineRef {.
  2. discardable, ...raises: [], tags: [], forbids: [].}

Schedule coroutine for execution. It does not run immediately. Source Edit

  1. proc suspend(sleepTime: float = 0.0) {....raises: [], tags: [], forbids: [].}

Stops coroutine execution and resumes no sooner than after sleeptime seconds. Until then other coroutines are executed. Source Edit

  1. proc wait(c: CoroutineRef; interval = 0.01) {....raises: [], tags: [], forbids: [].}

Returns only after coroutine c has returned. interval is time in seconds how often. Source Edit