diff options
author | Brian Carlstrom <bdc@google.com> | 2011-09-01 21:14:14 -0700 |
---|---|---|
committer | Brian Carlstrom <bdc@google.com> | 2011-09-03 13:25:31 -0700 |
commit | 9baa4aefc370f48774b6104680193d9a7e4fb631 (patch) | |
tree | 26ed5735022c29f77d6b025c357674ecf50b27c8 /src/heap.h | |
parent | e9ea8d1f002dd86976f0e1493ab8aa23a66c0494 (diff) | |
download | art-9baa4aefc370f48774b6104680193d9a7e4fb631.zip art-9baa4aefc370f48774b6104680193d9a7e4fb631.tar.gz art-9baa4aefc370f48774b6104680193d9a7e4fb631.tar.bz2 |
Remove use of MemMap for code allocation.
In preparation of moving to an executable code space.
Change-Id: I6cb6fec93c66005f8020d718fe3c1c5aa1c85356
Diffstat (limited to 'src/heap.h')
-rw-r--r-- | src/heap.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -21,9 +21,9 @@ class HeapBitmap; class Heap { public: - static const size_t kInitialSize = 16 * MB; + static const size_t kInitialSize = 64 * MB; // TODO: lower to 4 - static const size_t kMaximumSize = 64 * MB; + static const size_t kMaximumSize = 64 * MB; // TODO: lower to 16 typedef void (RootVisitor)(const Object* root, void* arg); |