Sign in
nest-open-source
/
nest-cam
/
4320010
/
jemalloc
/
ab75dcad8561d7693c3767cfae6c921b2ed6cd10
/
.
/
jemalloc
/
test
/
include
/
test
/
thd.h
blob: 47a51262e990000795fdf183f64fe2816b863b85 [
file
] [
log
] [
blame
]
/* 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
);