mirror of
https://github.com/paulscherrerinstitute/sf_daq_buffer.git
synced 2026-05-18 11:56:46 +02:00
Fix FastQueue bugs
This commit is contained in:
@@ -17,9 +17,11 @@ class FastQueue {
|
||||
|
||||
public:
|
||||
|
||||
int SLOT_EMPTY=0;
|
||||
int SLOT_RESERVED=1;
|
||||
int SLOT_READY=1;
|
||||
enum SLOT_STATUS {
|
||||
EMPTY=0,
|
||||
RESERVED=1,
|
||||
READY=2
|
||||
};
|
||||
|
||||
FastQueue(const size_t slot_data_n_bytes, const uint16_t n_slots);
|
||||
virtual ~FastQueue();
|
||||
|
||||
Reference in New Issue
Block a user