Files
Odin/core/thread/thread_name_openbsd.odin
2025-07-14 17:23:36 +07:00

14 lines
301 B
Odin

#+build openbsd
#+private
package thread
import "core:sys/posix"
import "core:c"
foreign import pthread "system:pthread"
foreign pthread {
pthread_get_name_np :: proc(thread: posix.pthread_t, name: [^]u8, len: c.size_t) ---
pthread_set_name_np :: proc(thread: posix.pthread_t, name: [^]u8) ---
}