Skip to content

Commit eb6f2d4

Browse files
author
Jethro Beekman
committed
Revert "SGX mutex is movable"
This reverts commit 30b82e0.
1 parent 998cfe5 commit eb6f2d4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

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

11-
pub type MovableMutex = Mutex;
11+
pub type MovableMutex = Box<Mutex>;
1212

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

0 commit comments

Comments
 (0)