SemysThreadCreate

01 Creates a thread object.
02

HSemysThread SemysThreadCreate(SemysThreadRun run, SemysThreadAbort abort, void *pParam);

03 Parameters:
  • run: Pointer to the run function of the thread.
  • abort: Pointer to the abort function of the thread.
  • pParam: Arbitrary value that will be passed to the thread functions.
04 Return Values:
A handle to the created thread object.
05 The created thread will not be automatically started. Use SemysThreadStart() to start the thread after creating it.
06 Reference: SemysThreading.h
Implementation: Semys Library
See Also: Threading Sub-System, SemysThreadDestroy(), SemysThreadStart(), SemysThreadRun(), SemysThreadAbort()

Goto: Main Page; This page is part of the Semys software documentation. See About: Documentation for details.