Skip to content

Commit 3c229a2

Browse files
author
Jethro Beekman
committed
Revert "SGX mutex is movable"
This reverts commit 30b82e0.
1 parent 0a4f69e commit 3c229a2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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)