summaryrefslogtreecommitdiffstats
path: root/test/src/thd.c
blob: 7e53625f8c896854380877856a1457313fd431f0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#include "test/jemalloc_test.h"

#ifdef _WIN32
void
thd_create(thd_t *thd, void *(*proc)(void *), void *arg)
{
	LPTHREAD_START_ROUTINE routine = (LPTHREAD_START_ROUTINE)proc;
	*thd = CreateThread(NULL, 0, routine, arg, 0, NULL);
	if (*thd == NULL)
		test_fail("Error in CreateThread()\n");
}

void
thd_join(thd_t thd, void **ret)
{

	if (WaitForSingleObject(thd, INFINITE) == WAIT_OBJECT_0 && ret)
		GetExitCodeThread(thd, (LPDWORD) ret);
}

#else
void
thd_create(thd_t *thd, void *(*proc)(void *), void *arg)
{

	if (pthread_create(thd, NULL, proc, arg) != 0)
		test_fail("Error in pthread_create()\n");
}

void
thd_join(thd_t thd, void **ret)
{

	pthread_join(thd, ret);
}
#endif