mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-31 02:12:11 +00:00
13 lines
1.2 KiB
Plaintext
13 lines
1.2 KiB
Plaintext
nimTitle typedthreads typedthreads.html module std/typedthreads 0
|
|
nim running typedthreads.html#running,Thread[TArg] proc running[TArg](t: Thread[TArg]): bool 152
|
|
nim handle typedthreads.html#handle,Thread[TArg] proc handle[TArg](t: Thread[TArg]): SysThread 156
|
|
nim joinThread typedthreads.html#joinThread,Thread[TArg] proc joinThread[TArg](t: Thread[TArg]) 187
|
|
nim joinThreads typedthreads.html#joinThreads,varargs[Thread[TArg]] proc joinThreads[TArg](t: varargs[Thread[TArg]]) 191
|
|
nim createThread typedthreads.html#createThread,Thread[TArg],proc(TArg),TArg proc createThread[TArg](t: var Thread[TArg]; tp: proc (arg: TArg) {.thread, nimcall.};\n param: TArg) 261
|
|
nim pinToCpu typedthreads.html#pinToCpu,Thread[Arg],Natural proc pinToCpu[Arg](t: var Thread[Arg]; cpu: Natural) 292
|
|
nim createThread typedthreads.html#createThread,Thread[void],proc) proc createThread(t: var Thread[void]; tp: proc () {.thread, nimcall.}) 303
|
|
heading Examples typedthreads.html#examples Examples 0
|
|
idx CPU typedthreads.html#cpu_1 Examples 0
|
|
idx affinity typedthreads.html#affinity_1 Examples 0
|
|
nimgrp createthread typedthreads.html#createThread-procs-all proc 261
|