@@ -31,7 +31,7 @@ extern "C" {
31
31
/// didn't block
32
32
/// * 2 - the thread blocked, but the timeout expired.
33
33
///
34
- /// [instr]: https://webassembly.github.io/threads/syntax/instructions.html#syntax-instr-atomic-memory
34
+ /// [instr]: https://webassembly.github.io/threads/core/ syntax/instructions.html#syntax-instr-atomic-memory
35
35
#[ inline]
36
36
#[ cfg_attr( test, assert_instr( memory. atomic. wait32) ) ]
37
37
#[ target_feature( enable = "atomics" ) ]
@@ -61,7 +61,7 @@ pub unsafe fn memory_atomic_wait32(ptr: *mut i32, expression: i32, timeout_ns: i
61
61
/// didn't block
62
62
/// * 2 - the thread blocked, but the timeout expired.
63
63
///
64
- /// [instr]: https://webassembly.github.io/threads/syntax/instructions.html#syntax-instr-atomic-memory
64
+ /// [instr]: https://webassembly.github.io/threads/core/ syntax/instructions.html#syntax-instr-atomic-memory
65
65
#[ inline]
66
66
#[ cfg_attr( test, assert_instr( memory. atomic. wait64) ) ]
67
67
#[ target_feature( enable = "atomics" ) ]
@@ -83,7 +83,7 @@ pub unsafe fn memory_atomic_wait64(ptr: *mut i64, expression: i64, timeout_ns: i
83
83
///
84
84
/// Returns the number of waiters which were actually notified.
85
85
///
86
- /// [instr]: https://webassembly.github.io/threads/syntax/instructions.html#syntax-instr-atomic-memory
86
+ /// [instr]: https://webassembly.github.io/threads/core/ syntax/instructions.html#syntax-instr-atomic-memory
87
87
#[ inline]
88
88
#[ cfg_attr( test, assert_instr( memory. atomic. notify) ) ]
89
89
#[ target_feature( enable = "atomics" ) ]
0 commit comments