File tree Expand file tree Collapse file tree 5 files changed +30
-0
lines changed
Expand file tree Collapse file tree 5 files changed +30
-0
lines changed Original file line number Diff line number Diff line change @@ -1303,6 +1303,11 @@ impl Clone for BorrowRef<'_> {
13031303///
13041304/// See the [module-level documentation](self) for more.
13051305#[ stable( feature = "rust1" , since = "1.0.0" ) ]
1306+ #[ cfg_attr(
1307+ not( bootstrap) ,
1308+ must_not_suspend = "Holding a Ref across suspend \
1309+ points can cause BorrowErrors"
1310+ ) ]
13061311pub struct Ref < ' b , T : ?Sized + ' b > {
13071312 value : & ' b T ,
13081313 borrow : BorrowRef < ' b > ,
@@ -1679,6 +1684,11 @@ impl<'b> BorrowRefMut<'b> {
16791684///
16801685/// See the [module-level documentation](self) for more.
16811686#[ stable( feature = "rust1" , since = "1.0.0" ) ]
1687+ #[ cfg_attr(
1688+ not( bootstrap) ,
1689+ must_not_suspend = "Holding a RefMut across suspend \
1690+ points can cause BorrowErrors"
1691+ ) ]
16821692pub struct RefMut < ' b , T : ?Sized + ' b > {
16831693 value : & ' b mut T ,
16841694 borrow : BorrowRefMut < ' b > ,
Original file line number Diff line number Diff line change 142142#![ feature( link_llvm_intrinsics) ]
143143#![ feature( llvm_asm) ]
144144#![ feature( min_specialization) ]
145+ #![ cfg_attr( not( bootstrap) , feature( must_not_suspend) ) ]
145146#![ feature( negative_impls) ]
146147#![ feature( never_type) ]
147148#![ feature( no_core) ]
Original file line number Diff line number Diff line change 297297#![ feature( maybe_uninit_slice) ]
298298#![ feature( maybe_uninit_uninit_array) ]
299299#![ feature( min_specialization) ]
300+ #![ cfg_attr( not( bootstrap) , feature( must_not_suspend) ) ]
300301#![ feature( needs_panic_runtime) ]
301302#![ feature( negative_impls) ]
302303#![ 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> {}
188188/// [`lock`]: Mutex::lock
189189/// [`try_lock`]: Mutex::try_lock
190190#[ 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 Futures to not implement `Send`"
196+ ) ]
191197#[ stable( feature = "rust1" , since = "1.0.0" ) ]
192198pub struct MutexGuard < ' a , T : ?Sized + ' a > {
193199 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> {}
9595/// [`read`]: RwLock::read
9696/// [`try_read`]: RwLock::try_read
9797#[ 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 Futures to not implement `Send`"
103+ ) ]
98104#[ stable( feature = "rust1" , since = "1.0.0" ) ]
99105pub struct RwLockReadGuard < ' a , T : ?Sized + ' a > {
100106 lock : & ' a RwLock < T > ,
@@ -115,6 +121,12 @@ unsafe impl<T: ?Sized + Sync> Sync for RwLockReadGuard<'_, T> {}
115121/// [`write`]: RwLock::write
116122/// [`try_write`]: RwLock::try_write
117123#[ 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+ ) ]
118130#[ stable( feature = "rust1" , since = "1.0.0" ) ]
119131pub struct RwLockWriteGuard < ' a , T : ?Sized + ' a > {
120132 lock : & ' a RwLock < T > ,
You can’t perform that action at this time.
0 commit comments