channel_unix.odin 323 B

12345678910111213141516
  1. // +build linux, darwin, freebsd
  2. package sync
  3. import "core:time"
  4. raw_channel_wait_queue_wait_on :: proc(state: ^uintptr, timeout: time.Duration) {
  5. // stub
  6. }
  7. raw_channel_wait_queue_signal :: proc(q: ^Raw_Channel_Wait_Queue) {
  8. // stub
  9. }
  10. raw_channel_wait_queue_broadcast :: proc(q: ^Raw_Channel_Wait_Queue) {
  11. // stub
  12. }