diff options
| author | Dániel Buga <[email protected]> | 2024-12-16 18:56:42 +0100 |
|---|---|---|
| committer | Dániel Buga <[email protected]> | 2024-12-16 20:37:01 +0100 |
| commit | fbd0fe06bde7949d3374d10e540291493e088314 (patch) | |
| tree | bde07ef3faf6be397bd61ac61327f5e6de9b765d /embassy-executor/src/raw/timer_queue.rs | |
| parent | c9f32b7e3667f29c4ab15d4dbab37acdb471d0ed (diff) | |
Remove special handling of integrated timer items
Diffstat (limited to 'embassy-executor/src/raw/timer_queue.rs')
| -rw-r--r-- | embassy-executor/src/raw/timer_queue.rs | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/embassy-executor/src/raw/timer_queue.rs b/embassy-executor/src/raw/timer_queue.rs index c4dba18ff..e52453be4 100644 --- a/embassy-executor/src/raw/timer_queue.rs +++ b/embassy-executor/src/raw/timer_queue.rs | |||
| @@ -71,14 +71,3 @@ impl TimerQueueItem { | |||
| 71 | } | 71 | } |
| 72 | } | 72 | } |
| 73 | } | 73 | } |
| 74 | |||
| 75 | /// The operation to perform after `timer_enqueue` is called. | ||
| 76 | #[derive(Debug, Copy, Clone, PartialEq)] | ||
| 77 | #[cfg_attr(feature = "defmt", derive(defmt::Format))] | ||
| 78 | #[must_use] | ||
| 79 | pub enum TimerEnqueueOperation { | ||
| 80 | /// Enqueue the task (or update its expiration time). | ||
| 81 | Enqueue, | ||
| 82 | /// The task must not be enqueued in the timer queue. | ||
| 83 | Ignore, | ||
| 84 | } | ||
