mirror of
https://github.com/Ed94/Odin.git
synced 2026-06-13 01:21:38 -07:00
17 lines
332 B
Odin
17 lines
332 B
Odin
// +build linux, darwin, freebsd, openbsd
|
|
package sync
|
|
|
|
import "core:time"
|
|
|
|
raw_channel_wait_queue_wait_on :: proc(state: ^uintptr, timeout: time.Duration) {
|
|
// stub
|
|
}
|
|
|
|
raw_channel_wait_queue_signal :: proc(q: ^Raw_Channel_Wait_Queue) {
|
|
// stub
|
|
}
|
|
|
|
raw_channel_wait_queue_broadcast :: proc(q: ^Raw_Channel_Wait_Queue) {
|
|
// stub
|
|
}
|