From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 15313 invoked by alias); 8 May 2008 11:41:47 -0000 Received: (qmail 15302 invoked by uid 22791); 8 May 2008 11:41:46 -0000 X-Spam-Check-By: sourceware.org Received: from mtaout1.012.net.il (HELO mtaout1.012.net.il) (84.95.2.1) by sourceware.org (qpsmtpd/0.31) with ESMTP; Thu, 08 May 2008 11:41:22 +0000 Received: from HOME-C4E4A596F7 ([83.130.255.47]) by i-mtaout1.012.net.il (HyperSendmail v2007.08) with ESMTPA id <0K0J0053XT2PEAM0@i-mtaout1.012.net.il> for gdb-patches@sourceware.org; Thu, 08 May 2008 14:54:26 +0300 (IDT) Date: Thu, 08 May 2008 18:19:00 -0000 From: Eli Zaretskii Subject: Re: [RFC] 07/10 non-stop inferior control In-reply-to: <200805061649.24082.pedro@codesourcery.com> X-012-Sender: halo1@inter.net.il To: Pedro Alves Cc: gdb-patches@sourceware.org Reply-to: Eli Zaretskii Message-id: Content-transfer-encoding: 7BIT References: <200805061649.24082.pedro@codesourcery.com> X-IsSubscribed: yes Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org X-SW-Source: 2008-05/txt/msg00278.txt.bz2 > From: Pedro Alves > Date: Tue, 6 May 2008 16:49:23 +0100 > > if (ecs->new_thread_event) > { > + if (non_stop) > + /* Non-stop requires a behaving target. */ > + internal_error (__FILE__, __LINE__, > + "target misreported a new thread in non-stop mode."); > + What does this internal_error mean? The wording of the error message doesn't seem to justify an internal_error. What am I missing here?