1 #ifndef __TESTRINGBUFFER__
2 #define __TESTRINGBUFFER__
Definition: TestRingBuffer.h:10
void run()
Definition: TestRingBuffer.h:34
Definition: TestRingBuffer.h:30
qint8 int8_t
Typedef for unsigned long long int. This type is guaranteed to be 64-bit.
Definition: jacktrip_types.h:74
void insertSlotBlocking(const int8_t *ptrToSlot)
Insert a slot into the RingBuffer from ptrToSlot. This method will block until there's space in the b...
Definition: RingBuffer.cpp:103
Provides a ring-buffer (or circular-buffer) that can be written to and read from asynchronously (bloc...
Definition: RingBuffer.h:55
void readSlotBlocking(int8_t *ptrToReadSlot)
Read a slot from the RingBuffer into ptrToReadSlot. This method will block until there's space in the...
Definition: RingBuffer.cpp:125
void run()
Definition: TestRingBuffer.h:14