26 lines
280 B
C
26 lines
280 B
C
#ifndef _TTHREAD_POOL_H_
|
|
#define _TTHREAD_POOL_H_
|
|
|
|
#include <sysenv.h>
|
|
#include <tthread.h>
|
|
|
|
#if _OS_WIN
|
|
|
|
#elif _OS_LINUX
|
|
|
|
#else
|
|
#error "Not Supported Operator System"
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif // _TTHREAD_POOL_H_
|