#include <thread.h>
Public Member Functions | |
| thread (kernel::module &module) | |
| void | run (void) |
Private Member Functions | |
| thread (const thread &) | |
| thread & | operator= (const thread &) |
Definition at line 36 of file thread.h.
| scalestack::threading::test::thread::thread | ( | kernel::module & | module | ) | [inline] |
This doesn't actually start the thread, derived classes must call start() when the underlying thread should be created. If this did start the thread, the run() method would most likely be started before the derived class was fully constructed.
| [in] | module | Module that the thread is associated with. |
Reimplemented from scalestack::threading::thread.
| scalestack::threading::test::thread::thread | ( | const thread & | ) | [private] |
Don't allow copying of objects.
| void scalestack::threading::test::thread::run | ( | void | ) | [inline, virtual] |
Method that implements the body of the running thread.
Implements scalestack::threading::thread.
Don't allow assignment of objects.
1.6.3