diff options
| author | Dario Nieuwenhuis <[email protected]> | 2025-06-01 12:16:50 +0000 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-06-01 12:16:50 +0000 |
| commit | ad5a14fe850190b3052487f87a579eaf7ea65ec5 (patch) | |
| tree | 61eecea8f96ec733c01dfb2fe3df31cb6be593b0 /embassy-executor/src/raw/mod.rs | |
| parent | fc4139146f27f0b5b53dc0de40db910ecce461c2 (diff) | |
| parent | 0f9a7a057fb7dfb2358acec9068fece82c7c7a89 (diff) | |
Merge pull request #4244 from janderholm/master
executor: Make state implementations and their conditions match
Diffstat (limited to 'embassy-executor/src/raw/mod.rs')
| -rw-r--r-- | embassy-executor/src/raw/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/embassy-executor/src/raw/mod.rs b/embassy-executor/src/raw/mod.rs index e7a27035a..913da2e25 100644 --- a/embassy-executor/src/raw/mod.rs +++ b/embassy-executor/src/raw/mod.rs | |||
| @@ -11,7 +11,7 @@ | |||
| 11 | #[cfg_attr(not(target_has_atomic = "ptr"), path = "run_queue_critical_section.rs")] | 11 | #[cfg_attr(not(target_has_atomic = "ptr"), path = "run_queue_critical_section.rs")] |
| 12 | mod run_queue; | 12 | mod run_queue; |
| 13 | 13 | ||
| 14 | #[cfg_attr(all(cortex_m, target_has_atomic = "8"), path = "state_atomics_arm.rs")] | 14 | #[cfg_attr(all(cortex_m, target_has_atomic = "32"), path = "state_atomics_arm.rs")] |
| 15 | #[cfg_attr(all(not(cortex_m), target_has_atomic = "8"), path = "state_atomics.rs")] | 15 | #[cfg_attr(all(not(cortex_m), target_has_atomic = "8"), path = "state_atomics.rs")] |
| 16 | #[cfg_attr(not(target_has_atomic = "8"), path = "state_critical_section.rs")] | 16 | #[cfg_attr(not(target_has_atomic = "8"), path = "state_critical_section.rs")] |
| 17 | mod state; | 17 | mod state; |
