aboutsummaryrefslogtreecommitdiffstats
path: root/src/fnnop.rs
Commit message (Collapse)AuthorAgeFilesLines
* WIP: stalled out trying to implement const-fn feature.stable-supportBrian Cully2019-08-061-1/+2
| | | | | | | | | | | | | Unfortunately, to maintain API compatibility, `replace` needs to be a regular borrow, so we need interior mutability with `UnsafeCell`. Simultaneously, `HandlerArray` needs to be `const fn` so it can be used where `lazy_static` isn't available, which means it needs to initialize its array in one go without the help of `MaybeUninit`. To do that, `Handler` must be `Copy`, but since it contains an `UnsafeCell` now, it cannot be copy. And thus we are boned. There are times when I think the premise of rust is admirable, but implementation is impossible.
* Update to 0.2.0: Add HandlerArray type.v0.2.0Brian Cully2019-06-031-0/+19
* Create HandlerArray as a safe wrapper around Handler. * Add Cargo features for HandlerArray size. * Move Handler into sub-module. * Add CriticalSection sub-module for architecture dependent support of interrupt-free contexts. * Add build rules to pull in cortex-m support for CriticalSection automatically.