commit | 1f87008b165d26541d832ff805250afdc89c253d | [log] [tgz] |
---|---|---|
author | Brian Carlstrom <bdc@google.com> | Tue Aug 23 16:02:11 2011 -0700 |
committer | Brian Carlstrom <bdc@google.com> | Wed Aug 31 09:46:57 2011 -0700 |
tree | a84122b3757b8f856eb0656a951ed6621b6d01a8 | |
parent | c5bfa8f49d8548d7c685a99b411311ef56bedffa [diff] [blame] |
Add HeapTest and make GC work enough to pass it Change-Id: If06eaef2921b64b3226bfd347acaec60ec993e67
diff --git a/src/runtime.cc b/src/runtime.cc index 50f25fe..1ac45f4 100644 --- a/src/runtime.cc +++ b/src/runtime.cc
@@ -383,4 +383,9 @@ return true; } +void Runtime::VisitRoots(Heap::RootVistor* root_visitor, void* arg) const { + GetClassLinker()->VisitRoots(root_visitor, arg); + UNIMPLEMENTED(WARNING) << "mark other roots including per thread state and thread stacks"; +} + } // namespace art