libd.async.coroutine

Undocumented in source.

Members

Aliases

CoroutineFunc
alias CoroutineFunc = void function() @(nogc) nothrow
Undocumented in source.
CoroutineStack
alias CoroutineStack = SumType!CoroutineStackUnion
Undocumented in source.

Enums

CoroutineState
enum CoroutineState
Undocumented in source.

Functions

coroutineCreate
Coroutine* coroutineCreate(CoroutineFunc func, CoroutineStack stack, void* context)
Undocumented in source. Be warned that the author may not have intended to support it.
coroutineCreateStandaloneStack
CoroutineStack coroutineCreateStandaloneStack(size_t minMemory, bool useGuardPage)
Undocumented in source. Be warned that the author may not have intended to support it.
coroutineDestroy
void coroutineDestroy(Coroutine* routine)
Undocumented in source. Be warned that the author may not have intended to support it.
coroutineDestroyStack
void coroutineDestroyStack(CoroutineStack stack)
Undocumented in source. Be warned that the author may not have intended to support it.
coroutineExit
void coroutineExit()
Undocumented in source. Be warned that the author may not have intended to support it.
coroutineGetContext
void* coroutineGetContext()
Undocumented in source. Be warned that the author may not have intended to support it.
coroutineReset
void coroutineReset(Coroutine* routine, void* newContext, CoroutineFunc newEntryPoint)
Undocumented in source. Be warned that the author may not have intended to support it.
coroutineResume
void coroutineResume(Coroutine* routine)
Undocumented in source. Be warned that the author may not have intended to support it.
coroutineStart
void coroutineStart(Coroutine* to)
Undocumented in source. Be warned that the author may not have intended to support it.
coroutineSwap
void coroutineSwap(Coroutine* from, Coroutine* to)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
coroutineYield
void coroutineYield()
Undocumented in source. Be warned that the author may not have intended to support it.

Manifest constants

DEFAULT_COROUTINE_STACK_SIZE
enum DEFAULT_COROUTINE_STACK_SIZE;
Undocumented in source.

Static variables

g_currentThreadMainRoutine
Coroutine g_currentThreadMainRoutine;
Undocumented in source.
g_currentThreadRoutine
Coroutine* g_currentThreadRoutine;
Undocumented in source.

Structs

Coroutine
struct Coroutine
Undocumented in source.
CoroutineSuspendedStack
struct CoroutineSuspendedStack
Undocumented in source.
StandaloneStack
struct StandaloneStack
Undocumented in source.

Unions

CoroutineStackUnion
union CoroutineStackUnion
Undocumented in source.

Meta