jamesmunns / bbqueue

A SPSC, lockless, no_std, thread safe, queue, based on BipBuffers

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Consider making certain checks zero cost

jamesmunns opened this issue · comments

Some sacrifices have been made for convenience and working with current stable.

  • We currently do runtime checks for verifying we have the right grant. See this comment
  • We currently use an option for bbq!() macros, because MaybeUninit isn't a thing

These concerns are addressed by v0.4.0. See #37 for progress,