Skip to content
Closed
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 cpp/src/plasma/store.cc
Original file line number Diff line number Diff line change
Expand Up @@ -913,7 +913,7 @@ class PlasmaStoreRunner {
// achieve that by mallocing and freeing a single large amount of space.
// that maximum allowed size up front.
if (use_one_memory_mapped_file) {
void* pointer = plasma::dlmemalign(kBlockSize, system_memory);
void* pointer = plasma::dlmemalign(kBlockSize, system_memory - 8192);
ARROW_CHECK(pointer != nullptr);
plasma::dlfree(pointer);
}
Expand Down