From d875d2d445307a01a6a25c70ee9bc7bef4d0e7a6 Mon Sep 17 00:00:00 2001 From: PePerRoNii Date: Mon, 14 Jul 2025 21:43:28 +0700 Subject: [PATCH] added set_name in thread_other --- core/thread/thread_other.odin | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/core/thread/thread_other.odin b/core/thread/thread_other.odin index d9fd9305e..ef71fa086 100644 --- a/core/thread/thread_other.odin +++ b/core/thread/thread_other.odin @@ -46,7 +46,10 @@ _yield :: proc() { unimplemented("core:thread procedure not supported on target") } -_get_name :: proc(thread: Thread, allocator : runtime.Allocator, loc : runtime.Source_Code_Location) -> (string, runtime.Allocator_Error) { +_get_name :: proc(thread: ^Thread, allocator : runtime.Allocator, loc : runtime.Source_Code_Location) -> (string, runtime.Allocator_Error) { unimplemented("core:thread procedure not supported on target") } +_set_name :: proc(thread: ^Thread, name:string) { + unimplemented("core:thread procedure not supported on target") +}