aboutsummaryrefslogtreecommitdiff
path: root/embassy-executor/src/arch/std.rs
diff options
context:
space:
mode:
authorDániel Buga <[email protected]>2023-08-14 08:22:22 +0200
committerDániel Buga <[email protected]>2023-08-14 08:22:22 +0200
commitec6bd27df6101bc5f77fa4eace0e8963970231ad (patch)
treeecbee40838f3300b1419c855d5e8ec3f17e4ef48 /embassy-executor/src/arch/std.rs
parent6ab0d71d9246cdc65f392212d03d639a51d21098 (diff)
Remove thread-context feature
Diffstat (limited to 'embassy-executor/src/arch/std.rs')
-rw-r--r--embassy-executor/src/arch/std.rs3
1 files changed, 0 insertions, 3 deletions
diff --git a/embassy-executor/src/arch/std.rs b/embassy-executor/src/arch/std.rs
index 2731e275e..ceaa5c7ab 100644
--- a/embassy-executor/src/arch/std.rs
+++ b/embassy-executor/src/arch/std.rs
@@ -1,9 +1,6 @@
1#[cfg(feature = "executor-interrupt")] 1#[cfg(feature = "executor-interrupt")]
2compile_error!("`executor-interrupt` is not supported with `arch-std`."); 2compile_error!("`executor-interrupt` is not supported with `arch-std`.");
3 3
4#[cfg(not(feature = "thread-context"))]
5compile_error!("`arch-std` requires `thread-context`.");
6
7#[cfg(feature = "executor-thread")] 4#[cfg(feature = "executor-thread")]
8pub use thread::*; 5pub use thread::*;
9#[cfg(feature = "executor-thread")] 6#[cfg(feature = "executor-thread")]