@@ -155,18 +155,18 @@ extern "rust-intrinsic" {
155
155
/// `std::sync::atomic` types via the `compare_exchange_weak` method by passing
156
156
/// [`Ordering::SeqCst`](../../std/sync/atomic/enum.Ordering.html)
157
157
/// as both the `success` and `failure` parameters. For example,
158
- /// [`AtomicBool::compare_exchange `][compare_exchange_weak ].
158
+ /// [`AtomicBool::compare_exchange_weak `][cew ].
159
159
///
160
- /// [compare_exchange_weak ]: ../../std/sync/atomic/struct.AtomicBool.html#method.compare_exchange_weak
160
+ /// [cew ]: ../../std/sync/atomic/struct.AtomicBool.html#method.compare_exchange_weak
161
161
pub fn atomic_cxchgweak < T > ( dst : * mut T , old : T , src : T ) -> ( T , bool ) ;
162
162
/// Stores a value if the current value is the same as the `old` value.
163
163
/// The stabilized version of this intrinsic is available on the
164
164
/// `std::sync::atomic` types via the `compare_exchange_weak` method by passing
165
165
/// [`Ordering::Acquire`](../../std/sync/atomic/enum.Ordering.html)
166
166
/// as both the `success` and `failure` parameters. For example,
167
- /// [`AtomicBool::compare_exchange `][compare_exchange_weak ].
167
+ /// [`AtomicBool::compare_exchange_weak `][cew ].
168
168
///
169
- /// [compare_exchange_weak ]: ../../std/sync/atomic/struct.AtomicBool.html#method.compare_exchange_weak
169
+ /// [cew ]: ../../std/sync/atomic/struct.AtomicBool.html#method.compare_exchange_weak
170
170
pub fn atomic_cxchgweak_acq < T > ( dst : * mut T , old : T , src : T ) -> ( T , bool ) ;
171
171
/// Stores a value if the current value is the same as the `old` value.
172
172
/// The stabilized version of this intrinsic is available on the
@@ -175,9 +175,9 @@ extern "rust-intrinsic" {
175
175
/// as the `success` and
176
176
/// [`Ordering::Relaxed`](../../std/sync/atomic/enum.Ordering.html)
177
177
/// as the `failure` parameters. For example,
178
- /// [`AtomicBool::compare_exchange `][compare_exchange_weak ].
178
+ /// [`AtomicBool::compare_exchange_weak `][cew ].
179
179
///
180
- /// [compare_exchange_weak ]: ../../std/sync/atomic/struct.AtomicBool.html#method.compare_exchange_weak
180
+ /// [cew ]: ../../std/sync/atomic/struct.AtomicBool.html#method.compare_exchange_weak
181
181
pub fn atomic_cxchgweak_rel < T > ( dst : * mut T , old : T , src : T ) -> ( T , bool ) ;
182
182
/// Stores a value if the current value is the same as the `old` value.
183
183
/// The stabilized version of this intrinsic is available on the
@@ -186,18 +186,18 @@ extern "rust-intrinsic" {
186
186
/// as the `success` and
187
187
/// [`Ordering::Acquire`](../../std/sync/atomic/enum.Ordering.html)
188
188
/// as the `failure` parameters. For example,
189
- /// [`AtomicBool::compare_exchange `][compare_exchange_weak ].
189
+ /// [`AtomicBool::compare_exchange_weak `][cew ].
190
190
///
191
- /// [compare_exchange_weak ]: ../../std/sync/atomic/struct.AtomicBool.html#method.compare_exchange_weak
191
+ /// [cew ]: ../../std/sync/atomic/struct.AtomicBool.html#method.compare_exchange_weak
192
192
pub fn atomic_cxchgweak_acqrel < T > ( dst : * mut T , old : T , src : T ) -> ( T , bool ) ;
193
193
/// Stores a value if the current value is the same as the `old` value.
194
194
/// The stabilized version of this intrinsic is available on the
195
195
/// `std::sync::atomic` types via the `compare_exchange_weak` method by passing
196
196
/// [`Ordering::Relaxed`](../../std/sync/atomic/enum.Ordering.html)
197
197
/// as both the `success` and `failure` parameters. For example,
198
- /// [`AtomicBool::compare_exchange `][compare_exchange_weak ].
198
+ /// [`AtomicBool::compare_exchange_weak `][cew ].
199
199
///
200
- /// [compare_exchange_weak ]: ../../std/sync/atomic/struct.AtomicBool.html#method.compare_exchange_weak
200
+ /// [cew ]: ../../std/sync/atomic/struct.AtomicBool.html#method.compare_exchange_weak
201
201
pub fn atomic_cxchgweak_relaxed < T > ( dst : * mut T , old : T , src : T ) -> ( T , bool ) ;
202
202
/// Stores a value if the current value is the same as the `old` value.
203
203
/// The stabilized version of this intrinsic is available on the
@@ -206,9 +206,9 @@ extern "rust-intrinsic" {
206
206
/// as the `success` and
207
207
/// [`Ordering::Relaxed`](../../std/sync/atomic/enum.Ordering.html)
208
208
/// as the `failure` parameters. For example,
209
- /// [`AtomicBool::compare_exchange `][compare_exchange_weak ].
209
+ /// [`AtomicBool::compare_exchange_weak `][cew ].
210
210
///
211
- /// [compare_exchange_weak ]: ../../std/sync/atomic/struct.AtomicBool.html#method.compare_exchange_weak
211
+ /// [cew ]: ../../std/sync/atomic/struct.AtomicBool.html#method.compare_exchange_weak
212
212
pub fn atomic_cxchgweak_failrelaxed < T > ( dst : * mut T , old : T , src : T ) -> ( T , bool ) ;
213
213
/// Stores a value if the current value is the same as the `old` value.
214
214
/// The stabilized version of this intrinsic is available on the
@@ -217,9 +217,9 @@ extern "rust-intrinsic" {
217
217
/// as the `success` and
218
218
/// [`Ordering::Acquire`](../../std/sync/atomic/enum.Ordering.html)
219
219
/// as the `failure` parameters. For example,
220
- /// [`AtomicBool::compare_exchange `][compare_exchange_weak ].
220
+ /// [`AtomicBool::compare_exchange_weak `][cew ].
221
221
///
222
- /// [compare_exchange_weak ]: ../../std/sync/atomic/struct.AtomicBool.html#method.compare_exchange_weak
222
+ /// [cew ]: ../../std/sync/atomic/struct.AtomicBool.html#method.compare_exchange_weak
223
223
pub fn atomic_cxchgweak_failacq < T > ( dst : * mut T , old : T , src : T ) -> ( T , bool ) ;
224
224
/// Stores a value if the current value is the same as the `old` value.
225
225
/// The stabilized version of this intrinsic is available on the
@@ -228,9 +228,9 @@ extern "rust-intrinsic" {
228
228
/// as the `success` and
229
229
/// [`Ordering::Relaxed`](../../std/sync/atomic/enum.Ordering.html)
230
230
/// as the `failure` parameters. For example,
231
- /// [`AtomicBool::compare_exchange `][compare_exchange_weak ].
231
+ /// [`AtomicBool::compare_exchange_weak `][cew ].
232
232
///
233
- /// [compare_exchange_weak ]: ../../std/sync/atomic/struct.AtomicBool.html#method.compare_exchange_weak
233
+ /// [cew ]: ../../std/sync/atomic/struct.AtomicBool.html#method.compare_exchange_weak
234
234
pub fn atomic_cxchgweak_acq_failrelaxed < T > ( dst : * mut T , old : T , src : T ) -> ( T , bool ) ;
235
235
/// Stores a value if the current value is the same as the `old` value.
236
236
/// The stabilized version of this intrinsic is available on the
@@ -239,9 +239,9 @@ extern "rust-intrinsic" {
239
239
/// as the `success` and
240
240
/// [`Ordering::Relaxed`](../../std/sync/atomic/enum.Ordering.html)
241
241
/// as the `failure` parameters. For example,
242
- /// [`AtomicBool::compare_exchange `][compare_exchange_weak ].
242
+ /// [`AtomicBool::compare_exchange_weak `][cew ].
243
243
///
244
- /// [compare_exchange_weak ]: ../../std/sync/atomic/struct.AtomicBool.html#method.compare_exchange_weak
244
+ /// [cew ]: ../../std/sync/atomic/struct.AtomicBool.html#method.compare_exchange_weak
245
245
pub fn atomic_cxchgweak_acqrel_failrelaxed < T > ( dst : * mut T , old : T , src : T ) -> ( T , bool ) ;
246
246
247
247
/// Loads the current value of the pointer.
0 commit comments