summaryrefslogtreecommitdiff
path: root/test/include/test/thd.h
blob: 47a51262e990000795fdf183f64fe2816b863b85 (plain)
1
2
3
4
5
6
7
8
9
/* 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);