Skip to content
Merged
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
2 changes: 1 addition & 1 deletion src/buffer_tree.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ nodes, int workers, bool reset=false) : dir(dir), M(size), B(b), N(nodes) {

// create the circular queue in which we will place ripe fruit (full leaves)
// make space for full 2 * workers full updates
cq = new CircularQueue(2*workers, 2*M);
cq = new CircularQueue(2*workers, 2*leaf_size);

// will want to use mmap instead? - how much is in RAM after allocation (none?)
// can't use mmap instead might use it as well. (Still need to create the file to be a given size)
Expand Down