Skip to content

Commit 9cbf90e

Browse files
author
Jethro Beekman
committed
SGX mutex is movable
1 parent 5b5afa5 commit 9cbf90e

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 = Box<Mutex>;
11+
pub type MovableMutex = Mutex;
1212

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

0 commit comments

Comments
 (0)