Programming Reference:Thread Class: Difference between revisions
| Line 6: | Line 6: | ||
==Methods== | ==Methods== | ||
===OSThread( | ===OSThread()=== | ||
All threads are created in suspended state, and resumed by calling their ''Start()'' function. | |||
===~OSThread()=== | ===~OSThread()=== | ||
Revision as of 16:09, 19 January 2011
Location
BCI2000/src/shared/utils
Synopsis
The OSThread class provides a wrapper for OS-dependent thread functionality.
Methods
OSThread()
All threads are created in suspended state, and resumed by calling their Start() function.
~OSThread()
Deleting an OSThread object with a running thread associated will kill the thread, resulting in an undefined state of the parent process. Make sure that the IsTerminated property is true before deleting the OSThread object.
Start()
Starts thread execution.
Terminate()
Initiates thread termination by setting the Terminating property to true.
Events
int Execute
This is the thread's main function. Typically, it will consist of a processing loop that exits when the thread's IsTerminating property becomes true:
int MyThread::Execute()
{
while( !IsTerminating() )
{ // do something
...
}
return 0;
}
Properties
int ID (r)
The thread's OS thread id, or zero if the thread is not running.
bool IsTerminating (r)
True after Terminate() has been called on the thread.
bool IsTerminated (r)
True after the thread has been terminated.
int Result (r)
The return code of the thread's Execute() function on termination of the thread.