From ed75ab49bbbf6e3aa0f7b0aa979c5eaebaf575b3 Mon Sep 17 00:00:00 2001 From: "WP. Yingamphol" Date: Sun, 14 Sep 2025 13:57:49 +0700 Subject: [PATCH] Change windows Thread_Description_Length to 128 --- core/thread/thread_windows.odin | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/thread/thread_windows.odin b/core/thread/thread_windows.odin index a0320890b..2f5d19b2e 100644 --- a/core/thread/thread_windows.odin +++ b/core/thread/thread_windows.odin @@ -10,7 +10,7 @@ import "core:unicode/utf16" _IS_SUPPORTED :: true //NOTE(peperronii): not sure about the exact length but there must be a limit -_THREAD_DESCRIPTION_LENGTH :: 64 +_THREAD_DESCRIPTION_LENGTH :: 128 Thread_Os_Specific :: struct { win32_thread: win32.HANDLE,