aboutsummaryrefslogtreecommitdiff
path: root/embassy-executor/src/raw/mod.rs
diff options
context:
space:
mode:
authorKat Perez <[email protected]>2025-04-29 08:49:19 -0400
committerKat Perez <[email protected]>2025-05-06 08:27:46 -0400
commitf8f9c38b2e2527c6e3b8396e06fbb18fc1ce2a1c (patch)
tree3902372deb606a037a6c2cda5b53bf7c7dc37962 /embassy-executor/src/raw/mod.rs
parent966914f4654f30f13964f90c1e2bd491f1105c6f (diff)
add a task registry to tracing infrastructure
Diffstat (limited to 'embassy-executor/src/raw/mod.rs')
-rw-r--r--embassy-executor/src/raw/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/embassy-executor/src/raw/mod.rs b/embassy-executor/src/raw/mod.rs
index 88d839e07..35c82557c 100644
--- a/embassy-executor/src/raw/mod.rs
+++ b/embassy-executor/src/raw/mod.rs
@@ -18,7 +18,7 @@ mod state;
18 18
19pub mod timer_queue; 19pub mod timer_queue;
20#[cfg(feature = "trace")] 20#[cfg(feature = "trace")]
21mod trace; 21pub mod trace;
22pub(crate) mod util; 22pub(crate) mod util;
23#[cfg_attr(feature = "turbowakers", path = "waker_turbo.rs")] 23#[cfg_attr(feature = "turbowakers", path = "waker_turbo.rs")]
24mod waker; 24mod waker;