Update core/thread/thread_unix.odin

Co-authored-by: Laytan <laytanlaats@hotmail.com>
This commit is contained in:
WP. Yingamphol
2025-07-15 09:32:02 +07:00
committed by GitHub
parent 5ffba9b222
commit 805c3228b8

View File

@@ -209,7 +209,7 @@ _get_name :: proc(thread: ^Thread, allocator: runtime.Allocator, loc: runtime.So
return
}
_set_name :: proc(thread: ^Thread, name:string) {
_set_name :: proc(thread: ^Thread, name: string) {
// Haiku doesn't have pthread_getname yet
when ODIN_OS == .Haiku {
unimplemented("core:thread set_name for haiku is not yet supported")