File tree Expand file tree Collapse file tree 3 files changed +19
-0
lines changed Expand file tree Collapse file tree 3 files changed +19
-0
lines changed Original file line number Diff line number Diff line change 297
297
#![ feature( maybe_uninit_slice) ]
298
298
#![ feature( maybe_uninit_uninit_array) ]
299
299
#![ feature( min_specialization) ]
300
+ #![ cfg_attr( not( bootstrap) , feature( must_not_suspend) ) ]
300
301
#![ feature( needs_panic_runtime) ]
301
302
#![ feature( negative_impls) ]
302
303
#![ feature( never_type) ]
Original file line number Diff line number Diff line change @@ -188,6 +188,12 @@ unsafe impl<T: ?Sized + Send> Sync for Mutex<T> {}
188
188
/// [`lock`]: Mutex::lock
189
189
/// [`try_lock`]: Mutex::try_lock
190
190
#[ must_use = "if unused the Mutex will immediately unlock" ]
191
+ #[ cfg_attr(
192
+ not( bootstrap) ,
193
+ must_not_suspend = "Holding a MutexGuard across suspend \
194
+ points can cause deadlocks, delays, \
195
+ and cause Future's to not implement `Send`"
196
+ ) ]
191
197
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
192
198
pub struct MutexGuard < ' a , T : ?Sized + ' a > {
193
199
lock : & ' a Mutex < T > ,
Original file line number Diff line number Diff line change @@ -95,6 +95,12 @@ unsafe impl<T: ?Sized + Send + Sync> Sync for RwLock<T> {}
95
95
/// [`read`]: RwLock::read
96
96
/// [`try_read`]: RwLock::try_read
97
97
#[ must_use = "if unused the RwLock will immediately unlock" ]
98
+ #[ cfg_attr(
99
+ not( bootstrap) ,
100
+ must_not_suspend = "Holding a RwLockReadGuard across suspend \
101
+ points can cause deadlocks, delays, \
102
+ and cause Future's to not implement `Send`"
103
+ ) ]
98
104
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
99
105
pub struct RwLockReadGuard < ' a , T : ?Sized + ' a > {
100
106
lock : & ' a RwLock < T > ,
@@ -115,6 +121,12 @@ unsafe impl<T: ?Sized + Sync> Sync for RwLockReadGuard<'_, T> {}
115
121
/// [`write`]: RwLock::write
116
122
/// [`try_write`]: RwLock::try_write
117
123
#[ must_use = "if unused the RwLock will immediately unlock" ]
124
+ #[ cfg_attr(
125
+ not( bootstrap) ,
126
+ must_not_suspend = "Holding a RwLockWriteGuard across suspend \
127
+ points can cause deadlocks, delays, \
128
+ and cause Future's to not implement `Send`"
129
+ ) ]
118
130
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
119
131
pub struct RwLockWriteGuard < ' a , T : ?Sized + ' a > {
120
132
lock : & ' a RwLock < T > ,
You can’t perform that action at this time.
0 commit comments