From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-il1-x12f.google.com (mail-il1-x12f.google.com [IPv6:2607:f8b0:4864:20::12f]) by sourceware.org (Postfix) with ESMTPS id CAAAA3852754 for ; Tue, 14 Jun 2022 15:04:04 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org CAAAA3852754 Received: by mail-il1-x12f.google.com with SMTP id l14so2790518ilq.1 for ; Tue, 14 Jun 2022 08:04:04 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:from:to:cc:subject:references:date:in-reply-to :message-id:user-agent:mime-version; bh=33YaIEA1b7UJS1pGN+HDu5G6tm+mC6VKg5jAA4ecp50=; b=PYblyu6O/K+tNZM4po2DnEwfZsnQ4UpMxKF09ItG4164AKlIwRC2cufOYR0x0Smblo mK+zbv8Z7Z0f7h/83wKu8QRk0JeGHH8X9fSy+2r68DSvzJHDFJlgRINQG0FVLgJ5HKgf XB8ywTFMG8Em9dXlEPQDOXoN1nRjHOButpKiZkD7jhNE2Ve4+Umdl0byLI7ka6djP2FB pwUF3D/wwID+haIsU9sPhhGOIS8ZHF9S99RtKtychvsJFort2ik3fgwZAMaNVUYoMHPR A3rCU/5gftBczZ2QIczLgyMRk8oRkgZIZ32MgCW2jA+vFOOCmjJ/O2H8kUL5M8aJ+hZ7 g1Aw== X-Gm-Message-State: AJIora8JFweMoM/rnKiEIubBPWvBhB//D2MsVwASPLP6i//aSanGsssw OM+uQPUALFfDdesxnq4KL+OE9WAhXDkimA== X-Google-Smtp-Source: AGRyM1txcNyjkocNCTIwuCqwODRJBrAvoP9fpqTMW8XvIjZcSAbRGn4eGe9tqgDfMQV5Tzxy1K0jdQ== X-Received: by 2002:a05:6e02:18cc:b0:2d3:c344:6dcd with SMTP id s12-20020a056e0218cc00b002d3c3446dcdmr3219296ilu.155.1655219043975; Tue, 14 Jun 2022 08:04:03 -0700 (PDT) Received: from murgatroyd (71-211-187-180.hlrn.qwest.net. [71.211.187.180]) by smtp.gmail.com with ESMTPSA id u12-20020a92d1cc000000b002d77ea49cd7sm5558153ilg.28.2022.06.14.08.04.03 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Tue, 14 Jun 2022 08:04:03 -0700 (PDT) From: Tom Tromey To: Pedro Alves Cc: Tom Tromey , gdb-patches@sourceware.org Subject: Re: [PATCH] Allow 'interrupt -a' in all-stop mode References: <20220608152754.1369001-1-tromey@adacore.com> <8d25f1c9-d4fe-7eca-e3fc-1840482fb914@palves.net> <87y1y4y0qx.fsf@tromey.com> X-Attribution: Tom Date: Tue, 14 Jun 2022 09:04:02 -0600 In-Reply-To: (Pedro Alves's message of "Mon, 13 Jun 2022 15:10:07 +0100") Message-ID: <87tu8nxp5p.fsf@tromey.com> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.2 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Status: No, score=-4.7 required=5.0 tests=BAYES_00, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, RCVD_IN_DNSWL_NONE, SPF_HELO_NONE, SPF_PASS, TXREP, T_SCC_BODY_TEXT_LINE autolearn=ham autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org X-BeenThere: gdb-patches@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gdb-patches mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Jun 2022 15:04:15 -0000 Pedro> We try to avoid having testcases that run forever if GDB Pedro> misbehaves. For more complicated threading tests, we end up with Pedro> something like: [...] Thanks, I fixed this & the other comments. I'm going to check it in now. Tom