diff options
| author | Laytan Laats <laytanlaats@hotmail.com> | 2024-12-05 19:04:45 +0100 |
|---|---|---|
| committer | Laytan Laats <laytanlaats@hotmail.com> | 2024-12-05 19:04:45 +0100 |
| commit | ac3a87c2cfbead5d7c10ec4197aebc8327ce584c (patch) | |
| tree | 57f5dc9185e7bb6d5f9611d4ee1a5e2e01d884cc /core/sync | |
| parent | ad438f418dca488438b769bb2a995b30bb8e50b8 (diff) | |
sync: fix require results
Diffstat (limited to 'core/sync')
| -rw-r--r-- | core/sync/futex_wasm.odin | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/core/sync/futex_wasm.odin b/core/sync/futex_wasm.odin index 0bc8bcbf7..8675203ae 100644 --- a/core/sync/futex_wasm.odin +++ b/core/sync/futex_wasm.odin @@ -12,7 +12,7 @@ _futex_wait :: proc "contextless" (f: ^Futex, expected: u32) -> bool { when !intrinsics.has_target_feature("atomics") { panic_contextless("usage of `core:sync` requires the `-target-feature:\"atomics\"` or a `-microarch` that supports it") } else { - intrinsics.wasm_memory_atomic_wait32((^u32)(f), expected, -1) + _ := intrinsics.wasm_memory_atomic_wait32((^u32)(f), expected, -1) return true } } @@ -30,7 +30,7 @@ _futex_signal :: proc "contextless" (f: ^Futex) { when !intrinsics.has_target_feature("atomics") { panic_contextless("usage of `core:sync` requires the `-target-feature:\"atomics\"` or a `-microarch` that supports it") } else { - intrinsics.wasm_memory_atomic_notify32((^u32)(f), 1) + _ := intrinsics.wasm_memory_atomic_notify32((^u32)(f), 1) } } @@ -38,7 +38,7 @@ _futex_broadcast :: proc "contextless" (f: ^Futex) { when !intrinsics.has_target_feature("atomics") { panic_contextless("usage of `core:sync` requires the `-target-feature:\"atomics\"` or a `-microarch` that supports it") } else { - intrinsics.wasm_memory_atomic_notify32((^u32)(f), max(u32)) + _ := intrinsics.wasm_memory_atomic_notify32((^u32)(f), max(u32)) } } |