From 2c2426c63ad8436b6aaf27238478da0d8c9a5497 Mon Sep 17 00:00:00 2001 From: Andreas Gampe Date: Fri, 29 Aug 2014 18:15:04 -0700 Subject: [PATCH] ART: Fix accidental "1" Should have been "0". Change-Id: I9ad3cf1e6be6d0fcf4c8f3700ddeec4e6d5ce167 --- runtime/parsed_options.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime/parsed_options.cc b/runtime/parsed_options.cc index 0a59d85bd..37e08a57e 100644 --- a/runtime/parsed_options.cc +++ b/runtime/parsed_options.cc @@ -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), -- 2.11.0