typedthreads.idx 1.2 KB

12345678910111213
  1. nimTitle typedthreads typedthreads.html module std/typedthreads 0
  2. nim running typedthreads.html#running,Thread[TArg] proc running[TArg](t: Thread[TArg]): bool 152
  3. nim handle typedthreads.html#handle,Thread[TArg] proc handle[TArg](t: Thread[TArg]): SysThread 156
  4. nim joinThread typedthreads.html#joinThread,Thread[TArg] proc joinThread[TArg](t: Thread[TArg]) 187
  5. nim joinThreads typedthreads.html#joinThreads,varargs[Thread[TArg]] proc joinThreads[TArg](t: varargs[Thread[TArg]]) 191
  6. 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
  7. nim pinToCpu typedthreads.html#pinToCpu,Thread[Arg],Natural proc pinToCpu[Arg](t: var Thread[Arg]; cpu: Natural) 292
  8. nim createThread typedthreads.html#createThread,Thread[void],proc) proc createThread(t: var Thread[void]; tp: proc () {.thread, nimcall.}) 303
  9. heading Examples typedthreads.html#examples Examples 0
  10. idx CPU typedthreads.html#cpu_1 Examples 0
  11. idx affinity typedthreads.html#affinity_1 Examples 0
  12. nimgrp createthread typedthreads.html#createThread-procs-all proc 261