From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:51310) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bgHjb-0007q0-Fx for qemu-devel@nongnu.org; Sat, 03 Sep 2016 16:40:18 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bgHja-0002zg-Jg for qemu-devel@nongnu.org; Sat, 03 Sep 2016 16:40:15 -0400 Received: from mail-pf0-x241.google.com ([2607:f8b0:400e:c00::241]:35728) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bgHja-0002zZ-Cw for qemu-devel@nongnu.org; Sat, 03 Sep 2016 16:40:14 -0400 Received: by mail-pf0-x241.google.com with SMTP id h186so7403667pfg.2 for ; Sat, 03 Sep 2016 13:40:14 -0700 (PDT) Received: from bigtime.twiddle.net (174-24-157-40.tukw.qwest.net. [174.24.157.40]) by smtp.gmail.com with ESMTPSA id cp11sm23739651pac.28.2016.09.03.13.40.10 for (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Sat, 03 Sep 2016 13:40:10 -0700 (PDT) Sender: Richard Henderson From: Richard Henderson Date: Sat, 3 Sep 2016 13:39:35 -0700 Message-Id: <1472935202-3342-8-git-send-email-rth@twiddle.net> In-Reply-To: <1472935202-3342-1-git-send-email-rth@twiddle.net> References: <1472935202-3342-1-git-send-email-rth@twiddle.net> Subject: [Qemu-devel] [PATCH v3 07/34] HACK: Always enable parallel_cpus List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org This is really just a placeholder for an actual command-line switch for mttcg. --- translate-all.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/translate-all.c b/translate-all.c index f97fc1e..d6d879c 100644 --- a/translate-all.c +++ b/translate-all.c @@ -119,7 +119,7 @@ static void *l1_map[V_L1_SIZE]; /* code generation context */ TCGContext tcg_ctx; -bool parallel_cpus; +bool parallel_cpus = 1; /* translation block context */ #ifdef CONFIG_USER_ONLY -- 2.7.4