aboutsummaryrefslogtreecommitdiff
path: root/embassy-executor/src/raw
Commit message (Expand)AuthorAgeFilesLines
* Introduce metadata-deadline and let the EDF scheduler use itdiondokter2025-09-113-22/+20
* Add some docsDion Dokter2025-09-111-1/+5
* Change deadline to use internal atomicsDion Dokter2025-09-113-58/+55
* Rename, remove excess mutJames Munns2025-09-111-5/+5
* Regular comments not doc commentsJames Munns2025-09-111-12/+12
* Replace use of RefCell with UnsafeCellJames Munns2025-09-111-4/+17
* Update to use critical-section::Mutex instead of mutex::BlockingMutexJames Munns2025-09-111-11/+17
* fmtJames Munns2025-09-111-5/+3
* Inline the "MutexTransferStack" impl as it is unclear whether it will be merg...James Munns2025-09-111-1/+30
* Update with cordyceps changesJames Munns2025-09-111-1/+1
* There can be only one (run queue)James Munns2025-09-114-82/+25
* "Deadline Rank Sorted Scheduler" -> "Earliest Deadline First Scheduler"James Munns2025-09-113-13/+13
* One more must_useJames Munns2025-09-112-1/+3
* Switch to released version of `cordyceps`, add error if used w/o atomicsJames Munns2025-09-111-0/+3
* Clean up some TODOsJames Munns2025-09-112-11/+53
* Update with changes from the PRJames Munns2025-09-111-1/+1
* Conditional importJames Munns2025-09-111-1/+3
* Dependency enablement trickeryJames Munns2025-09-113-7/+25
* Combine DRS and non-DRS atomic scheduler, using cordycepsJames Munns2025-09-113-150/+80
* Make some things more consistentJames Munns2025-09-112-53/+31
* Implement Deadline Ranked SchedulingJames Munns2025-09-112-4/+149
* Add initial DRS scheduler placeholderJames Munns2025-09-112-4/+107
* Prefer word-sized state in CS implDániel Buga2025-08-311-5/+10
* Prefer pointer-sized atomic operationsDániel Buga2025-08-312-7/+24
* Fix test & rtos-tracediondokter2025-08-291-1/+1
* executor: return error when creating the spawntoken, not when spawning.Dario Nieuwenhuis2025-08-291-9/+9
* executor: do not deref a mut ptr to the entire taskheader.Dario Nieuwenhuis2025-08-291-2/+2
* executor: add "task metadata" concept, make name a task metadata.Dario Nieuwenhuis2025-08-292-32/+11
* executor: allow trace and rtos-trace to coexist additively.Dario Nieuwenhuis2025-08-292-23/+28
* executor: do not store task IDs in RAM, we can get it from the pointer every ...Dario Nieuwenhuis2025-08-292-21/+6
* Retain timer_queue_itemDániel Buga2025-08-181-1/+1
* Make TimerQueueItem opaqueDániel Buga2025-08-182-90/+16
* add missing feature gate for rtos-traceBart Slinger2025-08-141-0/+1
* `embassy-time`: add missing `Debug` & `defmt::Format` derivesRalph Ursprung2025-07-281-1/+1
* embassy-executor: rtos-trace: fix task naming for new tasksFlorian Grandel2025-07-061-1/+11
* executor: Make state implementations and their conditions matchJohan Anderholm2025-05-233-11/+11
* remove unnecessary trace flagsKat Perez2025-05-081-7/+0
* move SpawnerTraceExt back into SpawnerKat Perez2025-05-081-42/+0
* update TraceExt trait name for SpawnerKat Perez2025-05-081-3/+3
* remove unused task_idKat Perez2025-05-081-12/+1
* implement TaskRefTrace for tracing-only fields in TaskRefKat Perez2025-05-082-36/+52
* move TaskTracker to traceKat Perez2025-05-082-72/+72
* move spawn_named into trace.rs through TraceExt traitKat Perez2025-05-081-0/+43
* remove unused tracing APIKat Perez2025-05-081-29/+0
* make tracing API functions internalKat Perez2025-05-081-2/+2
* fix whitespace in the imports in trace.rsKat Perez2025-05-061-2/+3
* use an intrusive linked list in TaskHeader to track tasksKat Perez2025-05-062-103/+163
* add ID field to TaskHeaderKat Perez2025-05-061-0/+19
* remove name from TaskRegistry and retrieve from task header insteadKat Perez2025-05-061-27/+6
* add get/set for task nameKat Perez2025-05-061-0/+15