Skip to content

Commit 672d2d1

Browse files
committed
Implement _dispatch_win32_set_thread_description
This function is a wrapper around SetThreadDescription, which accepts UTF-8 strings.
1 parent d5afe08 commit 672d2d1

File tree

1 file changed

+14
-15
lines changed

1 file changed

+14
-15
lines changed

src/queue.c

+14-15
Original file line numberDiff line numberDiff line change
@@ -29,25 +29,28 @@
2929
#endif
3030

3131
#if defined(_WIN32)
32-
// Needs to be free'd after use
33-
static inline wchar_t *_Nullable _dispatch_char_to_wchar_str(const char *str) {
34-
int wideCharSize = MultiByteToWideChar(CP_UTF8, 0, str, -1, NULL, 0);
35-
if (wideCharSize == 0) {
32+
// Wrapper around SetThreadDescription for UTF-8 strings
33+
void _dispatch_win32_set_thread_description(HANDLE hThread, const char *description) {
34+
int wcsize = MultiByteToWideChar(CP_UTF8, 0, description, -1, NULL, 0);
35+
if (wcsize == 0) {
3636
return NULL;
3737
}
3838

39-
wchar_t* wideCharStr = (wchar_t*)malloc(wideCharSize * sizeof(wchar_t));
40-
if (wideCharStr == NULL) {
39+
wchar_t* wcstr = (wchar_t*)malloc(wcsize * sizeof(wchar_t));
40+
if (wcstr == NULL) {
4141
return NULL;
4242
}
4343

44-
int result = MultiByteToWideChar(CP_UTF8, 0, str, -1, wideCharStr, wideCharSize);
44+
int result = MultiByteToWideChar(CP_UTF8, 0, description, -1, wcstr, wcsize);
4545
if (result == 0) {
46-
free(wideCharStr);
47-
return NULL;
46+
free(wcstr);
47+
return NULL;
4848
}
4949

50-
return wideCharStr;
50+
if (likely(wcstr != NULL)) {
51+
SetThreadDescription(hThread, wcstr);
52+
free(desc);
53+
}
5154
}
5255
#endif
5356

@@ -6286,11 +6289,7 @@ _dispatch_worker_thread(void *context)
62866289

62876290
// Set thread description to the label of the root queue
62886291
if (dq->dq_label) {
6289-
wchar_t *desc = _dispatch_char_to_wchar_str(dq->dq_label);
6290-
if (likely(desc != NULL)) {
6291-
SetThreadDescription(current, desc);
6292-
free(desc);
6293-
}
6292+
_dispatch_win32_set_thread_description(dq->dq_label);
62946293
}
62956294

62966295
int rc = SetThreadPriority(current, win_priority);

0 commit comments

Comments
 (0)