OSDN Git Service

ART: Fix accidental "1"
authorAndreas Gampe <agampe@google.com>
Sat, 30 Aug 2014 01:15:04 +0000 (18:15 -0700)
committerAndreas Gampe <agampe@google.com>
Sat, 30 Aug 2014 01:15:04 +0000 (18:15 -0700)
Should have been "0".

Change-Id: I9ad3cf1e6be6d0fcf4c8f3700ddeec4e6d5ce167

runtime/parsed_options.cc

index 0a59d85..37e08a5 100644 (file)
@@ -66,7 +66,7 @@ ParsedOptions::ParsedOptions()
     heap_target_utilization_(gc::Heap::kDefaultTargetUtilization),
     foreground_heap_growth_multiplier_(gc::Heap::kDefaultHeapGrowthMultiplier),
     parallel_gc_threads_(1),
-    conc_gc_threads_(1),                            // Only the main GC thread, no workers.
+    conc_gc_threads_(0),                            // Only the main GC thread, no workers.
     collector_type_(                                // The default GC type is set in makefiles.
 #if ART_DEFAULT_GC_TYPE_IS_CMS
         gc::kCollectorTypeCMS),