summaryrefslogtreecommitdiffstats
path: root/runtime/gc
diff options
context:
space:
mode:
authorMathieu Chartier <mathieuc@google.com>2014-04-01 16:30:24 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2014-04-01 16:30:24 +0000
commit7ea687d886be7b8c106b0e0190dab299d14adcad (patch)
tree173f7219fcfb74a12a045185bef50b980888c7f3 /runtime/gc
parent88e0463fa7e8ea7b427b65a07cd7b28111575174 (diff)
parent05a48b1f8e62564abb7c2fe674e3234d5861647f (diff)
downloadart-7ea687d886be7b8c106b0e0190dab299d14adcad.zip
art-7ea687d886be7b8c106b0e0190dab299d14adcad.tar.gz
art-7ea687d886be7b8c106b0e0190dab299d14adcad.tar.bz2
Merge "Fix stack overflow slow path error."
Diffstat (limited to 'runtime/gc')
-rw-r--r--runtime/gc/collector/garbage_collector.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/gc/collector/garbage_collector.h b/runtime/gc/collector/garbage_collector.h
index ccfa9cf..5b7b8a2 100644
--- a/runtime/gc/collector/garbage_collector.h
+++ b/runtime/gc/collector/garbage_collector.h
@@ -128,7 +128,7 @@ class GarbageCollector {
// Mark all reachable objects, done concurrently.
virtual void MarkingPhase() = 0;
- // Only called for concurrent GCs.
+ // Phase of the GC which is run with mutator lock exclusively held.
virtual void PausePhase();
// Called with mutators running.