#include <thread.hh>
Inheritance diagram for mpcl::system::TThread:
Public Methods | |
TThread (void) | |
Builds a new instance. | |
void | start (void) |
Starts the thread. | |
void | join (void) |
From other thread, waits til this thread has finished. | |
Protected Methods | |
void | exit (void) |
void | body (void)=0 |
Main body of the thread. | |
Static Protected Methods | |
void * | _starter (void *pvTHREAD_INSTANCE) |
Definition at line 45 of file posix_1/thread.hh.
|
Support function for starting threads.
Definition at line 68 of file posix_1/thread.hh. Referenced by start(). |
|
Stops the thread. This member function musts be called only by the current thread. Implements mpcl::system::IThread. Definition at line 81 of file posix_1/thread.hh. |