类别:ThreadData
类型 | 使用 | 成员 | 说明 |
建构子 | public | ||
解构子 | public | ||
资料 | public | 。 | |
资料 | public | 。 | |
资料 | public | 。 | |
资料 | public | 。 | |
资料 | public | 。 | |
资料 | public | 。 | |
资料 | public | 。 | |
资料 | public | 。 | |
资料 | public | 。 | |
资料 | public | 。 | |
资料 | public | 。 | |
资料 | public | 实际的线绪函式。 | |
函式 | public | 设定开始。 | |
函式 | public | 设定停止。 | |
函式 | public | 。 | |
函式 | public | 。 | |
函式 | public | 。 | |
函式 | public | 。 |
建议
C++定义
#if defined(WIN32) || defined(_WIN32)typedef unsigned int (*ThreadFunction)(void * arg) ;
#else
typedef void * (*ThreadFunction)(void * arg) ;
#endif
class ThreadData
{
public:
enum ThreadState {
Idle = 0 ,
Active = 1 ,
Deactive = 2 ,
Recycle = 3 } ;
int Id ;
int Type ;
int Priority ;
int Status ;
int Running ;
int StackSize ;
bool Reservation ; // STACK_SIZE_PARAM_IS_A_RESERVATION ;
char * Arguments ;
void * Extra ;
#if defined(WIN32) || defined(_WIN32)
HANDLE Thread ;
unsigned int dwThreadID ;
#else
pthread_t Thread ;
#endif
ThreadFunction Function ;
explicit ThreadData (void) ;
virtual ~ ThreadData (void) ;
void Start (void) ;
void Stop (void) ;
void Join (void) ;
int setPriority (int priority) ;
#if defined(WIN32) || defined(_WIN32)
HANDLE ThreadId (void) ;
#else
pthread_t ThreadId (void) ;
#endif
bool isSelf (void) ;
};
示范