Commit c3a60837 authored by verwaest's avatar verwaest Committed by Commit bot

Reduce zone segment pool size on all devices to 8kb

BUG=chromium:655129

Review-Url: https://codereview.chromium.org/2504673002
Cr-Commit-Position: refs/heads/master@{#41005}
parent 32077e01
......@@ -21,9 +21,9 @@ namespace internal {
class V8_EXPORT_PRIVATE AccountingAllocator {
public:
static const size_t kMaxPoolSizeLowMemoryDevice = 8ul * KB;
static const size_t kMaxPoolSizeMediumMemoryDevice = 1ul * MB;
static const size_t kMaxPoolSizeHighMemoryDevice = 2ul * MB;
static const size_t kMaxPoolSizeHugeMemoryDevice = 3ul * MB;
static const size_t kMaxPoolSizeMediumMemoryDevice = 8ul * KB;
static const size_t kMaxPoolSizeHighMemoryDevice = 8ul * KB;
static const size_t kMaxPoolSizeHugeMemoryDevice = 8ul * KB;
AccountingAllocator();
virtual ~AccountingAllocator();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment