SemysThreadAbort

01 The abort function of a thread.
02

typedef void (*SemysThreadAbort)(HSemysThread thread, void *pParam);

03 Parameters:
  • thread: The thread that is to be aborted.
  • pParam: Arbitrary value that was passed to SemysThreadCreate().
04 This typedef is a placeholder for the actual user code provided thread abort function.
05 This function (if provided) should signal the thread in some way to end its run function.
06 Reference: SemysThreading.h
Implementation: Semys Library
See Also: Threading Sub-System, SemysThreadStop(), SemysThreadRun()

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