@@ -76,7 +76,7 @@ extern "rust-intrinsic" {
76
76
/// as both the `success` and `failure` parameters. For example,
77
77
/// [`AtomicBool::compare_exchange`][compare_exchange].
78
78
///
79
- /// [compare_exchange]: ../../std/ sync/ atomic/struct. AtomicBool.html#method. compare_exchange
79
+ /// [compare_exchange]: crate:: sync:: atomic:: AtomicBool:: compare_exchange
80
80
pub fn atomic_cxchg < T : Copy > ( dst : * mut T , old : T , src : T ) -> ( T , bool ) ;
81
81
/// Stores a value if the current value is the same as the `old` value.
82
82
///
@@ -86,7 +86,7 @@ extern "rust-intrinsic" {
86
86
/// as both the `success` and `failure` parameters. For example,
87
87
/// [`AtomicBool::compare_exchange`][compare_exchange].
88
88
///
89
- /// [compare_exchange]: ../../std/ sync/ atomic/struct. AtomicBool.html#method. compare_exchange
89
+ /// [compare_exchange]: crate:: sync:: atomic:: AtomicBool:: compare_exchange
90
90
pub fn atomic_cxchg_acq < T : Copy > ( dst : * mut T , old : T , src : T ) -> ( T , bool ) ;
91
91
/// Stores a value if the current value is the same as the `old` value.
92
92
///
@@ -98,7 +98,7 @@ extern "rust-intrinsic" {
98
98
/// as the `failure` parameters. For example,
99
99
/// [`AtomicBool::compare_exchange`][compare_exchange].
100
100
///
101
- /// [compare_exchange]: ../../std/ sync/ atomic/struct. AtomicBool.html#method. compare_exchange
101
+ /// [compare_exchange]: crate:: sync:: atomic:: AtomicBool:: compare_exchange
102
102
pub fn atomic_cxchg_rel < T : Copy > ( dst : * mut T , old : T , src : T ) -> ( T , bool ) ;
103
103
/// Stores a value if the current value is the same as the `old` value.
104
104
///
@@ -110,7 +110,7 @@ extern "rust-intrinsic" {
110
110
/// as the `failure` parameters. For example,
111
111
/// [`AtomicBool::compare_exchange`][compare_exchange].
112
112
///
113
- /// [compare_exchange]: ../../std/ sync/ atomic/struct. AtomicBool.html#method. compare_exchange
113
+ /// [compare_exchange]: crate:: sync:: atomic:: AtomicBool:: compare_exchange
114
114
pub fn atomic_cxchg_acqrel < T : Copy > ( dst : * mut T , old : T , src : T ) -> ( T , bool ) ;
115
115
/// Stores a value if the current value is the same as the `old` value.
116
116
///
@@ -120,7 +120,7 @@ extern "rust-intrinsic" {
120
120
/// as both the `success` and `failure` parameters. For example,
121
121
/// [`AtomicBool::compare_exchange`][compare_exchange].
122
122
///
123
- /// [compare_exchange]: ../../std/ sync/ atomic/struct. AtomicBool.html#method. compare_exchange
123
+ /// [compare_exchange]: crate:: sync:: atomic:: AtomicBool:: compare_exchange
124
124
pub fn atomic_cxchg_relaxed < T : Copy > ( dst : * mut T , old : T , src : T ) -> ( T , bool ) ;
125
125
/// Stores a value if the current value is the same as the `old` value.
126
126
///
@@ -132,7 +132,7 @@ extern "rust-intrinsic" {
132
132
/// as the `failure` parameters. For example,
133
133
/// [`AtomicBool::compare_exchange`][compare_exchange].
134
134
///
135
- /// [compare_exchange]: ../../std/ sync/ atomic/struct. AtomicBool.html#method. compare_exchange
135
+ /// [compare_exchange]: crate:: sync:: atomic:: AtomicBool:: compare_exchange
136
136
pub fn atomic_cxchg_failrelaxed < T : Copy > ( dst : * mut T , old : T , src : T ) -> ( T , bool ) ;
137
137
/// Stores a value if the current value is the same as the `old` value.
138
138
///
@@ -144,7 +144,7 @@ extern "rust-intrinsic" {
144
144
/// as the `failure` parameters. For example,
145
145
/// [`AtomicBool::compare_exchange`][compare_exchange].
146
146
///
147
- /// [compare_exchange]: ../../std/ sync/ atomic/struct. AtomicBool.html#method. compare_exchange
147
+ /// [compare_exchange]: crate:: sync:: atomic:: AtomicBool:: compare_exchange
148
148
pub fn atomic_cxchg_failacq < T : Copy > ( dst : * mut T , old : T , src : T ) -> ( T , bool ) ;
149
149
/// Stores a value if the current value is the same as the `old` value.
150
150
///
@@ -156,7 +156,7 @@ extern "rust-intrinsic" {
156
156
/// as the `failure` parameters. For example,
157
157
/// [`AtomicBool::compare_exchange`][compare_exchange].
158
158
///
159
- /// [compare_exchange]: ../../std/ sync/ atomic/struct. AtomicBool.html#method. compare_exchange
159
+ /// [compare_exchange]: crate:: sync:: atomic:: AtomicBool:: compare_exchange
160
160
pub fn atomic_cxchg_acq_failrelaxed < T : Copy > ( dst : * mut T , old : T , src : T ) -> ( T , bool ) ;
161
161
/// Stores a value if the current value is the same as the `old` value.
162
162
///
@@ -168,7 +168,7 @@ extern "rust-intrinsic" {
168
168
/// as the `failure` parameters. For example,
169
169
/// [`AtomicBool::compare_exchange`][compare_exchange].
170
170
///
171
- /// [compare_exchange]: ../../std/ sync/ atomic/struct. AtomicBool.html#method. compare_exchange
171
+ /// [compare_exchange]: crate:: sync:: atomic:: AtomicBool:: compare_exchange
172
172
pub fn atomic_cxchg_acqrel_failrelaxed < T : Copy > ( dst : * mut T , old : T , src : T ) -> ( T , bool ) ;
173
173
174
174
/// Stores a value if the current value is the same as the `old` value.
@@ -179,7 +179,7 @@ extern "rust-intrinsic" {
179
179
/// as both the `success` and `failure` parameters. For example,
180
180
/// [`AtomicBool::compare_exchange_weak`][cew].
181
181
///
182
- /// [cew]: ../../std/ sync/ atomic/struct. AtomicBool.html#method. compare_exchange_weak
182
+ /// [cew]: crate:: sync:: atomic:: AtomicBool:: compare_exchange_weak
183
183
pub fn atomic_cxchgweak < T : Copy > ( dst : * mut T , old : T , src : T ) -> ( T , bool ) ;
184
184
/// Stores a value if the current value is the same as the `old` value.
185
185
///
@@ -189,7 +189,7 @@ extern "rust-intrinsic" {
189
189
/// as both the `success` and `failure` parameters. For example,
190
190
/// [`AtomicBool::compare_exchange_weak`][cew].
191
191
///
192
- /// [cew]: ../../std/ sync/ atomic/struct. AtomicBool.html#method. compare_exchange_weak
192
+ /// [cew]: crate:: sync:: atomic:: AtomicBool:: compare_exchange_weak
193
193
pub fn atomic_cxchgweak_acq < T : Copy > ( dst : * mut T , old : T , src : T ) -> ( T , bool ) ;
194
194
/// Stores a value if the current value is the same as the `old` value.
195
195
///
@@ -201,7 +201,7 @@ extern "rust-intrinsic" {
201
201
/// as the `failure` parameters. For example,
202
202
/// [`AtomicBool::compare_exchange_weak`][cew].
203
203
///
204
- /// [cew]: ../../std/ sync/ atomic/struct. AtomicBool.html#method. compare_exchange_weak
204
+ /// [cew]: crate:: sync:: atomic:: AtomicBool:: compare_exchange_weak
205
205
pub fn atomic_cxchgweak_rel < T : Copy > ( dst : * mut T , old : T , src : T ) -> ( T , bool ) ;
206
206
/// Stores a value if the current value is the same as the `old` value.
207
207
///
@@ -213,7 +213,7 @@ extern "rust-intrinsic" {
213
213
/// as the `failure` parameters. For example,
214
214
/// [`AtomicBool::compare_exchange_weak`][cew].
215
215
///
216
- /// [cew]: ../../std/ sync/ atomic/struct. AtomicBool.html#method. compare_exchange_weak
216
+ /// [cew]: crate:: sync:: atomic:: AtomicBool:: compare_exchange_weak
217
217
pub fn atomic_cxchgweak_acqrel < T : Copy > ( dst : * mut T , old : T , src : T ) -> ( T , bool ) ;
218
218
/// Stores a value if the current value is the same as the `old` value.
219
219
///
@@ -223,7 +223,7 @@ extern "rust-intrinsic" {
223
223
/// as both the `success` and `failure` parameters. For example,
224
224
/// [`AtomicBool::compare_exchange_weak`][cew].
225
225
///
226
- /// [cew]: ../../std/ sync/ atomic/struct. AtomicBool.html#method. compare_exchange_weak
226
+ /// [cew]: crate:: sync:: atomic:: AtomicBool:: compare_exchange_weak
227
227
pub fn atomic_cxchgweak_relaxed < T : Copy > ( dst : * mut T , old : T , src : T ) -> ( T , bool ) ;
228
228
/// Stores a value if the current value is the same as the `old` value.
229
229
///
@@ -235,7 +235,7 @@ extern "rust-intrinsic" {
235
235
/// as the `failure` parameters. For example,
236
236
/// [`AtomicBool::compare_exchange_weak`][cew].
237
237
///
238
- /// [cew]: ../../std/ sync/ atomic/struct. AtomicBool.html#method. compare_exchange_weak
238
+ /// [cew]: crate:: sync:: atomic:: AtomicBool:: compare_exchange_weak
239
239
pub fn atomic_cxchgweak_failrelaxed < T : Copy > ( dst : * mut T , old : T , src : T ) -> ( T , bool ) ;
240
240
/// Stores a value if the current value is the same as the `old` value.
241
241
///
@@ -247,7 +247,7 @@ extern "rust-intrinsic" {
247
247
/// as the `failure` parameters. For example,
248
248
/// [`AtomicBool::compare_exchange_weak`][cew].
249
249
///
250
- /// [cew]: ../../std/ sync/ atomic/struct. AtomicBool.html#method. compare_exchange_weak
250
+ /// [cew]: crate:: sync:: atomic:: AtomicBool:: compare_exchange_weak
251
251
pub fn atomic_cxchgweak_failacq < T : Copy > ( dst : * mut T , old : T , src : T ) -> ( T , bool ) ;
252
252
/// Stores a value if the current value is the same as the `old` value.
253
253
///
@@ -259,7 +259,7 @@ extern "rust-intrinsic" {
259
259
/// as the `failure` parameters. For example,
260
260
/// [`AtomicBool::compare_exchange_weak`][cew].
261
261
///
262
- /// [cew]: ../../std/ sync/ atomic/struct. AtomicBool.html#method. compare_exchange_weak
262
+ /// [cew]: crate:: sync:: atomic:: AtomicBool:: compare_exchange_weak
263
263
pub fn atomic_cxchgweak_acq_failrelaxed < T : Copy > ( dst : * mut T , old : T , src : T ) -> ( T , bool ) ;
264
264
/// Stores a value if the current value is the same as the `old` value.
265
265
///
@@ -271,7 +271,7 @@ extern "rust-intrinsic" {
271
271
/// as the `failure` parameters. For example,
272
272
/// [`AtomicBool::compare_exchange_weak`][cew].
273
273
///
274
- /// [cew]: ../../std/ sync/ atomic/struct. AtomicBool.html#method. compare_exchange_weak
274
+ /// [cew]: crate:: sync:: atomic:: AtomicBool:: compare_exchange_weak
275
275
pub fn atomic_cxchgweak_acqrel_failrelaxed < T : Copy > ( dst : * mut T , old : T , src : T ) -> ( T , bool ) ;
276
276
277
277
/// Loads the current value of the pointer.
0 commit comments