Revert "SGX mutex is movable"

This reverts commit 30b82e0f96579d9f897c4e2a780af82662d89772.
This commit is contained in:
Jethro Beekman 2021-07-27 12:10:24 +02:00
parent 998cfe5aad
commit eb6f2d4be0

View File

@ -8,7 +8,7 @@ pub struct Mutex {
inner: SpinMutex<WaitVariable<bool>>,
}
pub type MovableMutex = Mutex;
pub type MovableMutex = Box<Mutex>;
// Implementation according to “Operating Systems: Three Easy Pieces”, chapter 28
impl Mutex {