commit | 2cd334ae2d4287216523882f0d298cf3901b7ab1 | [log] [tgz] |
---|---|---|
author | Hiroshi Yamauchi <yamauchi@google.com> | Fri Jan 09 14:03:35 2015 -0800 |
committer | Hiroshi Yamauchi <yamauchi@google.com> | Fri Jan 23 14:07:32 2015 -0800 |
tree | b72d3d07e5a04151caca96cae345075b6e4452b0 | |
parent | 604e2828896fbb8663897d1e75112da7305ead4c [diff] [blame] |
More of the concurrent copying collector. Bug: 12687968 Change-Id: I62f70274d47df6d6cab714df95c518b750ce3105
diff --git a/runtime/gc/collector/immune_region.h b/runtime/gc/collector/immune_region.h index 277525e..30144f0 100644 --- a/runtime/gc/collector/immune_region.h +++ b/runtime/gc/collector/immune_region.h
@@ -57,6 +57,13 @@ UpdateSize(); } + mirror::Object* Begin() { + return begin_; + } + mirror::Object* End() { + return end_; + } + private: bool IsEmpty() const { return size_ == 0;