server-skynet-source-3rd-je.../test/include/test/thd.h

10 lines
224 B
C
Raw Normal View History

2014-12-09 06:40:14 +08:00
/* Abstraction layer for threading in tests. */
#ifdef _WIN32
typedef HANDLE thd_t;
#else
typedef pthread_t thd_t;
#endif
void thd_create(thd_t *thd, void *(*proc)(void *), void *arg);
void thd_join(thd_t thd, void **ret);