diff options
| author | Dario Nieuwenhuis <[email protected]> | 2024-03-01 23:26:26 +0000 |
|---|---|---|
| committer | GitHub <[email protected]> | 2024-03-01 23:26:26 +0000 |
| commit | 64890498ca6d6193ca0ac30952c24a657b8b88f3 (patch) | |
| tree | b5042d3bf727c4627cbee577b22bfb13a934be16 /embassy-executor/src | |
| parent | 3fe907b54d643f6be59da8c36af79acc58c90b85 (diff) | |
| parent | 2c42463205dae7e38535fb18f58e872df99e125a (diff) | |
Merge pull request #2242 from lz1998/main
remove portable-atomic
Diffstat (limited to 'embassy-executor/src')
| -rw-r--r-- | embassy-executor/src/arch/riscv32.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/embassy-executor/src/arch/riscv32.rs b/embassy-executor/src/arch/riscv32.rs index c56f502d3..01e63a9fd 100644 --- a/embassy-executor/src/arch/riscv32.rs +++ b/embassy-executor/src/arch/riscv32.rs | |||
| @@ -6,9 +6,9 @@ pub use thread::*; | |||
| 6 | #[cfg(feature = "executor-thread")] | 6 | #[cfg(feature = "executor-thread")] |
| 7 | mod thread { | 7 | mod thread { |
| 8 | use core::marker::PhantomData; | 8 | use core::marker::PhantomData; |
| 9 | use core::sync::atomic::{AtomicBool, Ordering}; | ||
| 9 | 10 | ||
| 10 | pub use embassy_executor_macros::main_riscv as main; | 11 | pub use embassy_executor_macros::main_riscv as main; |
| 11 | use portable_atomic::{AtomicBool, Ordering}; | ||
| 12 | 12 | ||
| 13 | use crate::{raw, Spawner}; | 13 | use crate::{raw, Spawner}; |
| 14 | 14 | ||
