commit | db4d54081f09abcbe97ffdf615874f2809a9e777 | [log] [tgz] |
---|---|---|
author | Brian Carlstrom <bdc@google.com> | Tue Aug 09 12:18:28 2011 -0700 |
committer | Brian Carlstrom <bdc@google.com> | Mon Aug 15 10:03:22 2011 -0700 |
tree | 86d4b6cdbfda6538ebf3fbb2f362209eb6867ce5 | |
parent | 350dad1bb785281d6740633f219a2832feda6ff3 [diff] [blame] |
First pass of ImageWriter Change-Id: I4f189587a2e3cc1c265200b8fa64321b299947eb
diff --git a/src/mark_stack.h b/src/mark_stack.h index eeeb79c..38252c2 100644 --- a/src/mark_stack.h +++ b/src/mark_stack.h
@@ -5,6 +5,8 @@ #include "logging.h" #include "macros.h" +#include "mem_map.h" +#include "scoped_ptr.h" namespace art { @@ -41,6 +43,9 @@ bool Init(size_t maximum_size); + // Memory mapping of the mark stack. + scoped_ptr<MemMap> mem_map_; + // Base of the mark stack. const Object* const* base_;