We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 066a5c3 commit abb9f38Copy full SHA for abb9f38
rtic-sync/src/channel.rs
@@ -28,7 +28,7 @@ type WaitQueue = DoublyLinkedList<WaitQueueData>;
28
/// This channel uses critical sections, however there are extremely small and all `memcpy`
29
/// operations of `T` are done without critical sections.
30
///
31
-/// Right now, the size of the channel slots is limited to 255 elements.
+/// Right now, the size of the queue `N` is limited to 255 elements.
32
pub struct Channel<T, const N: usize> {
33
// Here are all indexes that are not used in `slots` and ready to be allocated.
34
freeq: UnsafeCell<Deque<u8, N>>,
0 commit comments