You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
++ PR's welcome if you have the time! It'd be great if SPSC worked on stable I'm unfortunately going to be pretty busy for the rest of this month (moving houses).
I suppose the only concern with using Vec is that it just passes the buck: we'd depend on libcollections instead of liballoc, which is a slightly larger barrier for minimal embedded systems. But then again we depend on std directly so I guess that is a bigger problem for embedded. :)
Specifically:
UnsafeCell
can be used to emulate!Sync
Vec
may be used instead of manually usingbuffer
+capacity
+allocated_size
(and depending on liballoc)The text was updated successfully, but these errors were encountered: