d4a2b8bab1
This tests the combination of the prof_recent and thread_name features. Verified that it catches the issue being fixed in this PR. Also explicitly set thread name in test/unit/prof_recent. This fixes the name testing when no default thread name is set (e.g. FreeBSD).
53 lines
1.1 KiB
C
53 lines
1.1 KiB
C
#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) {
|
|
DWORD exit_code;
|
|
GetExitCodeThread(thd, (LPDWORD) &exit_code);
|
|
*ret = (void *)(uintptr_t)exit_code;
|
|
}
|
|
}
|
|
|
|
#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
|
|
|
|
void
|
|
thd_setname(const char *name) {
|
|
#ifdef JEMALLOC_HAVE_PTHREAD_SETNAME_NP
|
|
pthread_setname_np(pthread_self(), name);
|
|
#elif defined(JEMALLOC_HAVE_PTHREAD_SET_NAME_NP)
|
|
pthread_set_name_np(pthread_self(), name);
|
|
#endif
|
|
}
|
|
|
|
bool
|
|
thd_has_setname(void) {
|
|
#if defined(JEMALLOC_HAVE_PTHREAD_SETNAME_NP) || defined(JEMALLOC_HAVE_PTHREAD_SET_NAME_NP)
|
|
return true;
|
|
#else
|
|
return false;
|
|
#endif
|
|
}
|