aboutsummaryrefslogtreecommitdiff
path: root/core/sync
diff options
context:
space:
mode:
authorgingerBill <bill@gingerbill.org>2020-08-02 15:07:52 +0100
committergingerBill <bill@gingerbill.org>2020-08-02 15:07:52 +0100
commit9cc20954a3fa8f6b4b4e1f3f9a18e528700a06f1 (patch)
treec69e049a7bcc584ae4147b5b46f7b8c14d48d26f /core/sync
parent91ff3e5bca8e75b4981ed2f10c758525d725a398 (diff)
Add sys/windows/synchronization.odin
Diffstat (limited to 'core/sync')
-rw-r--r--core/sync/channel_unix.odin6
1 files changed, 1 insertions, 5 deletions
diff --git a/core/sync/channel_unix.odin b/core/sync/channel_unix.odin
index 6fe84f2d3..6ae428328 100644
--- a/core/sync/channel_unix.odin
+++ b/core/sync/channel_unix.odin
@@ -11,10 +11,6 @@ raw_channel_wait_queue_signal :: proc(q: ^Raw_Channel_Wait_Queue) {
// stub
}
-
raw_channel_wait_queue_broadcast :: proc(q: ^Raw_Channel_Wait_Queue) {
- for x := q^; x != nil; x = x.next {
- q^ = x.next;
- // stub
- }
+ // stub
}