diff options
author | 2015-02-18 14:33:14 -0800 | |
---|---|---|
committer | 2015-02-19 09:59:50 -0800 | |
commit | b666f4805c8ae707ea6fd7f6c7f375e0b000dba8 (patch) | |
tree | a61439a9bcb555dc575286f3e0bb5e50ce185982 /compiler/utils/swap_space.h | |
parent | 39109a06015c91188232e59fa9e60e0915d24cd7 (diff) |
Move arenas into runtime
Moved arena pool into the runtime.
Motivation:
Allow GC to use arena allocators, recycle arena pool for linear alloc.
Bug: 19264997
Change-Id: I8ddbb6d55ee923a980b28fb656c758c5d7697c2f
Diffstat (limited to 'compiler/utils/swap_space.h')
-rw-r--r-- | compiler/utils/swap_space.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/utils/swap_space.h b/compiler/utils/swap_space.h index 2d0d77af78..1f8f5da6cd 100644 --- a/compiler/utils/swap_space.h +++ b/compiler/utils/swap_space.h @@ -23,12 +23,12 @@ #include <stdint.h> #include <stddef.h> +#include "base/debug_stack.h" #include "base/logging.h" #include "base/macros.h" #include "base/mutex.h" #include "mem_map.h" #include "utils.h" -#include "utils/debug_stack.h" namespace art { |