Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions include/guttering_system.h
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,9 @@ class GutteringSystem {
}

// get data out of the guttering system either one gutter at a time or in a batched fashion
bool get_data(WorkQueue::DataNode *&data) { return wq.peek(data); }
void get_data_callback(WorkQueue::DataNode *data) { wq.peek_callback(data); }
void set_non_block(bool block) { wq.set_non_block(block);} //set non-blocking calls in wq
virtual bool get_data(WorkQueue::DataNode *&data) { return wq.peek(data); }
virtual void get_data_callback(WorkQueue::DataNode *data) { wq.peek_callback(data); }
virtual void set_non_block(bool block) { wq.set_non_block(block);} //set non-blocking calls in wq
protected:
// parameters of the GutteringSystem, defined by the GutteringConfiguration param or config file
const uint32_t page_size; // guttertree -- write granularity
Expand Down