xref: /aosp_15_r20/external/jemalloc_new/test/include/test/thd.h (revision 1208bc7e437ced7eb82efac44ba17e3beba411da)
1 /* Abstraction layer for threading in tests. */
2 #ifdef _WIN32
3 typedef HANDLE thd_t;
4 #else
5 typedef pthread_t thd_t;
6 #endif
7 
8 void	thd_create(thd_t *thd, void *(*proc)(void *), void *arg);
9 void	thd_join(thd_t thd, void **ret);
10