From patchwork Tue Mar 5 16:03:19 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Fabien Chouteau X-Patchwork-Id: 225067 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 4F50D2C032C for ; Wed, 6 Mar 2013 03:04:01 +1100 (EST) Received: from localhost ([::1]:51727 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UCuLP-0004kY-Hc for incoming@patchwork.ozlabs.org; Tue, 05 Mar 2013 11:03:59 -0500 Received: from eggs.gnu.org ([208.118.235.92]:38414) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UCuKy-0004iJ-Mu for qemu-devel@nongnu.org; Tue, 05 Mar 2013 11:03:35 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UCuKx-0002sd-Jo for qemu-devel@nongnu.org; Tue, 05 Mar 2013 11:03:32 -0500 Received: from mel.act-europe.fr ([194.98.77.210]:35690) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UCuKx-0002sW-Bf for qemu-devel@nongnu.org; Tue, 05 Mar 2013 11:03:31 -0500 Received: from localhost (localhost [127.0.0.1]) by filtered-smtp.eu.adacore.com (Postfix) with ESMTP id 98C89290079; Tue, 5 Mar 2013 17:03:30 +0100 (CET) X-Virus-Scanned: amavisd-new at eu.adacore.com Received: from mel.act-europe.fr ([127.0.0.1]) by localhost (smtp.eu.adacore.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 67ICtSXTLShq; Tue, 5 Mar 2013 17:03:30 +0100 (CET) Received: from PomPomGalli.act-europe.fr (pompomgalli.act-europe.fr [10.10.1.88]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mel.act-europe.fr (Postfix) with ESMTP id 785A529007B; Tue, 5 Mar 2013 17:03:30 +0100 (CET) From: Fabien Chouteau To: qemu-devel@nongnu.org Date: Tue, 5 Mar 2013 17:03:19 +0100 Message-Id: <1362499399-19475-2-git-send-email-chouteau@adacore.com> X-Mailer: git-send-email 1.7.9.5 In-Reply-To: <1362499399-19475-1-git-send-email-chouteau@adacore.com> References: <1362499399-19475-1-git-send-email-chouteau@adacore.com> X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6.x X-Received-From: 194.98.77.210 Cc: jan.kiszka@siemens.com Subject: [Qemu-devel] [PATCH 2/2] Revert "gdbstub: Do not kill target in system emulation mode" X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org This reverts commit 00e94dbc7fd0110b0555d59592b004333adfb4b8. Signed-off-by: Fabien Chouteau --- gdbstub.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/gdbstub.c b/gdbstub.c index c0686a9..22078df 100644 --- a/gdbstub.c +++ b/gdbstub.c @@ -2181,11 +2181,9 @@ static int gdb_handle_packet(GDBState *s, const char *line_buf) goto unknown_command; } case 'k': -#ifdef CONFIG_USER_ONLY /* Kill the target */ fprintf(stderr, "\nQEMU: Terminated via GDBstub\n"); exit(0); -#endif case 'D': /* Detach packet */ gdb_breakpoint_remove_all();