diff options
| -rw-r--r-- | embassy-executor/Cargo.toml | 2 | ||||
| -rw-r--r-- | embassy-executor/src/raw/run_queue.rs | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/embassy-executor/Cargo.toml b/embassy-executor/Cargo.toml index 34468e4f9..0ea18acbc 100644 --- a/embassy-executor/Cargo.toml +++ b/embassy-executor/Cargo.toml | |||
| @@ -81,7 +81,7 @@ avr-device = { version = "0.7.0", optional = true } | |||
| 81 | # version = "0.3.3" | 81 | # version = "0.3.3" |
| 82 | # todo: update after https://github.com/hawkw/mycelium/pull/537 is merged | 82 | # todo: update after https://github.com/hawkw/mycelium/pull/537 is merged |
| 83 | git = "https://github.com/hawkw/mycelium" | 83 | git = "https://github.com/hawkw/mycelium" |
| 84 | rev = "86c428eecfd37ee24dd81f14c4a9f5c8ecefcf17" | 84 | rev = "e21f9756e7d787a023f2ef1bc7f2159cc7dd26e0" |
| 85 | 85 | ||
| 86 | # Note: this is ONLY a dependency when the target does NOT have atomics | 86 | # Note: this is ONLY a dependency when the target does NOT have atomics |
| 87 | [target.'cfg(not(target_has_atomic="ptr"))'.dependencies.mutex] | 87 | [target.'cfg(not(target_has_atomic="ptr"))'.dependencies.mutex] |
diff --git a/embassy-executor/src/raw/run_queue.rs b/embassy-executor/src/raw/run_queue.rs index f630041e0..c6c7d7109 100644 --- a/embassy-executor/src/raw/run_queue.rs +++ b/embassy-executor/src/raw/run_queue.rs | |||
| @@ -9,7 +9,7 @@ use cordyceps::SortedList; | |||
| 9 | type TransferStack<T> = cordyceps::TransferStack<T>; | 9 | type TransferStack<T> = cordyceps::TransferStack<T>; |
| 10 | 10 | ||
| 11 | #[cfg(not(target_has_atomic = "ptr"))] | 11 | #[cfg(not(target_has_atomic = "ptr"))] |
| 12 | type TransferStack<T> = cordyceps::TransferStack<mutex::raw_impls::cs::CriticalSectionRawMutex, T>; | 12 | type TransferStack<T> = cordyceps::MutexTransferStack<mutex::raw_impls::cs::CriticalSectionRawMutex, T>; |
| 13 | 13 | ||
| 14 | use super::{TaskHeader, TaskRef}; | 14 | use super::{TaskHeader, TaskRef}; |
| 15 | 15 | ||
