Data Structures | |
class | SafeData |
class | Task |
class | Thread |
Enumerations | |
enum | ThreadCmd { CMD_NONE, CMD_TERMINATE, CMD_STOP } |
Copyright (C) 2008 iRex Technologies B.V. All rights reserved.
enum common::ThreadCmd |
CMD_NONE |
No external commond. |
CMD_TERMINATE |
Terminate thread, abort current task and quit at once. |
CMD_STOP |
Stop thread, wait until all tasks are executed. |
Definition at line 36 of file thread.h.
00037 { 00038 CMD_NONE, ///< No external commond 00039 CMD_TERMINATE, ///< Terminate thread, abort current task and quit at once 00040 CMD_STOP ///< Stop thread, wait until all tasks are executed 00041 };