From patchwork Wed May 19 16:03:00 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Luiz Capitulino X-Patchwork-Id: 52995 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 38AB9B7D20 for ; Thu, 20 May 2010 02:23:19 +1000 (EST) Received: from localhost ([127.0.0.1]:52283 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OEm3A-00075b-7f for incoming@patchwork.ozlabs.org; Wed, 19 May 2010 12:23:16 -0400 Received: from [140.186.70.92] (port=49616 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OElk0-0003vm-19 for qemu-devel@nongnu.org; Wed, 19 May 2010 12:03:29 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1OEljy-0005VC-AP for qemu-devel@nongnu.org; Wed, 19 May 2010 12:03:27 -0400 Received: from mx1.redhat.com ([209.132.183.28]:57399) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OEljy-0005V3-2I for qemu-devel@nongnu.org; Wed, 19 May 2010 12:03:26 -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 o4JG3PO4012798 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Wed, 19 May 2010 12:03:25 -0400 Received: from localhost (vpn-8-1.rdu.redhat.com [10.11.8.1]) by int-mx01.intmail.prod.int.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id o4JG3NQX016829; Wed, 19 May 2010 12:03:24 -0400 From: Luiz Capitulino To: aliguori@us.ibm.com Date: Wed, 19 May 2010 13:03:00 -0300 Message-Id: <1274284982-15125-6-git-send-email-lcapitulino@redhat.com> In-Reply-To: <1274284982-15125-1-git-send-email-lcapitulino@redhat.com> References: <1274284982-15125-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: qemu-devel@nongnu.org Subject: [Qemu-devel] [PATCH 5/7] 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 48ee66c..879446a 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;