Files
Odin/core/thread/thread_name_netbsd.odin
2026-05-01 13:22:03 +07:00

16 lines
375 B
Odin

#+build netbsd
#+private
package thread
import "core:sys/posix"
import "core:c"
_MAX_PTHREAD_NAME_LENGTH :: 32
foreign import pthread "system:pthread"
foreign pthread {
pthread_getname_np :: proc(thread: posix.pthread_t, name: [^]u8, len: c.size_t) -> posix.Errno ---
pthread_setname_np :: proc(thread: posix.pthread_t, name: cstring, arg: rawptr) -> posix.Errno ---
}