re-added Haiku os _set_name guard

This commit is contained in:
WP. Yingamphol
2025-08-28 09:53:53 +07:00
committed by GitHub
parent e4cc58d992
commit 704a917355

View File

@@ -58,7 +58,9 @@ _create :: proc(procedure: Thread_Proc, priority: Thread_Priority, name: Maybe(s
runtime.run_thread_local_cleaners()
}
_set_name(t)
when ODIN_OS != .Haiku {
_set_name(t)
}
t.procedure(t)
}