mirror of
https://github.com/odin-lang/Odin.git
synced 2026-07-30 17:57:45 -04:00
16 lines
333 B
Odin
16 lines
333 B
Odin
#+build openbsd
|
|
#+private
|
|
package thread
|
|
|
|
import "core:sys/posix"
|
|
import "core:c"
|
|
|
|
foreign import pthread "system:pthread"
|
|
|
|
_MAX_PTHREAD_NAME_LENGTH :: 20
|
|
|
|
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) ---
|
|
}
|