Skip to content

Commit 8bc7ec1

Browse files
authored
Rollup merge of #87507 - jethrogb:jb/sgx-unmoveable-mutex, r=dtolnay
SGX mutex is *not* moveable Reverts the erroneous change in #85029.
2 parents 23479f7 + b518dc7 commit 8bc7ec1

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

library/std/src/sys/sgx/mutex.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@ pub struct Mutex {
88
inner: SpinMutex<WaitVariable<bool>>,
99
}
1010

11-
pub type MovableMutex = Mutex;
11+
// not movable: see UnsafeList implementation
12+
pub type MovableMutex = Box<Mutex>;
1213

1314
// Implementation according to “Operating Systems: Three Easy Pieces”, chapter 28
1415
impl Mutex {

library/std/src/sys/sgx/waitqueue/unsafe_list.rs

+1
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ impl<T> UnsafeListEntry<T> {
2323
}
2424
}
2525

26+
// WARNING: self-referential struct!
2627
pub struct UnsafeList<T> {
2728
head_tail: NonNull<UnsafeListEntry<T>>,
2829
head_tail_entry: Option<UnsafeListEntry<T>>,

0 commit comments

Comments
 (0)