From patchwork Wed May 12 17:52:47 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Luiz Capitulino X-Patchwork-Id: 52402 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [199.232.76.165]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 097ECB7DF5 for ; Thu, 13 May 2010 04:20:54 +1000 (EST) Received: from localhost ([127.0.0.1]:52778 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OCGY7-0006E9-JD for incoming@patchwork.ozlabs.org; Wed, 12 May 2010 14:20:51 -0400 Received: from [140.186.70.92] (port=44788 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OCGUa-0004yE-Ny for qemu-devel@nongnu.org; Wed, 12 May 2010 14:17:13 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1OCG7J-0008UZ-Hs for qemu-devel@nongnu.org; Wed, 12 May 2010 13:53:10 -0400 Received: from mx1.redhat.com ([209.132.183.28]:16543) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OCG7J-0008UO-9x for qemu-devel@nongnu.org; Wed, 12 May 2010 13:53:09 -0400 Received: from int-mx01.intmail.prod.int.phx2.redhat.com (int-mx01.intmail.prod.int.phx2.redhat.com [10.5.11.11]) by mx1.redhat.com (8.13.8/8.13.8) with ESMTP id o4CHr86j015449 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Wed, 12 May 2010 13:53:08 -0400 Received: from localhost (vpn-10-238.rdu.redhat.com [10.11.10.238]) by int-mx01.intmail.prod.int.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id o4CHr7At022813; Wed, 12 May 2010 13:53:07 -0400 From: Luiz Capitulino To: qemu-devel@nongnu.org Date: Wed, 12 May 2010 14:52:47 -0300 Message-Id: <1273686768-26561-3-git-send-email-lcapitulino@redhat.com> In-Reply-To: <1273686768-26561-1-git-send-email-lcapitulino@redhat.com> References: <1273686768-26561-1-git-send-email-lcapitulino@redhat.com> X-Scanned-By: MIMEDefang 2.67 on 10.5.11.11 X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. Cc: pbonzini@redhat.com Subject: [Qemu-devel] [PATCH 2/3] sysemu: Export 'no_shutdown' X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org It's a global variable already, do_quit() will use it. Signed-off-by: Luiz Capitulino --- sysemu.h | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/sysemu.h b/sysemu.h index fcfccdf..58c9733 100644 --- a/sysemu.h +++ b/sysemu.h @@ -128,6 +128,7 @@ extern int max_cpus; extern int cursor_hide; extern int graphic_rotate; extern int no_quit; +extern int no_shutdown; extern int semihosting_enabled; extern int old_param; extern int boot_menu;