diff options
| author | dalegaard <dalegaard@users.noreply.github.com> | 2024-08-21 20:40:52 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-08-21 18:40:52 +0000 |
| commit | a636f4e4ada7aee2e1d858303429b273eff25471 (patch) | |
| tree | c2bbafaa09a417d49c264b72107eefb0cc81f65f /rtic-time/CHANGELOG.md | |
| parent | 2c85ee4620bc18096aedbae8c248656de6aa9f7c (diff) | |
Change `timeout`/`delay` functions to non-async (#910)
Because of a compiler bug, the `async` implementations of
`delay`/`delay_until`/`timeout`/`timeout_at` produce much larger RAM
footprint than they should.
Fixes #890.
Co-authored-by: Emil Fresk <emil.fresk@gmail.com>
Diffstat (limited to 'rtic-time/CHANGELOG.md')
| -rw-r--r-- | rtic-time/CHANGELOG.md | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/rtic-time/CHANGELOG.md b/rtic-time/CHANGELOG.md index 22772d1..de22ac9 100644 --- a/rtic-time/CHANGELOG.md +++ b/rtic-time/CHANGELOG.md @@ -7,6 +7,10 @@ For each category, *Added*, *Changed*, *Fixed* add new entries at the top! ## Unreleased +### Changed + +- Replace `async` implementations of `delay`/`delay_until`/`timeout`/`timeout_at` with structs to reduce memory usage. + ## v2.0.0 - 2024-05-29 ### Added |
