From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 31476 invoked by alias); 16 Jan 2014 13:07:31 -0000 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 Received: (qmail 31459 invoked by uid 89); 16 Jan 2014 13:07:29 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-0.3 required=5.0 tests=AWL,BAYES_00,FSL_HELO_BARE_IP_2,RCVD_IN_DNSWL_NONE,RCVD_NUMERIC_HELO,RP_MATCHES_RCVD,SPF_HELO_PASS,SPF_PASS autolearn=no version=3.3.2 X-HELO: plane.gmane.org Received: from plane.gmane.org (HELO plane.gmane.org) (80.91.229.3) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES256-SHA encrypted) ESMTPS; Thu, 16 Jan 2014 13:07:29 +0000 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1W3mfJ-0005YI-IV for gdb-patches@sourceware.org; Thu, 16 Jan 2014 14:07:21 +0100 Received: from 193.50.110.185 ([193.50.110.185]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Thu, 16 Jan 2014 14:07:21 +0100 Received: from ludo by 193.50.110.185 with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Thu, 16 Jan 2014 14:07:21 +0100 To: gdb-patches@sourceware.org From: ludo@gnu.org (Ludovic =?utf-8?Q?Court=C3=A8s?=) Subject: Re: [PATCH v4 00/16] extension language API for GDB Date: Thu, 16 Jan 2014 13:07:00 -0000 Message-ID: <87wqi09itd.fsf@gnu.org> References: Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-URL: http://www.fdn.fr/~lcourtes/ X-Revolutionary-Date: 27 =?utf-8?Q?Niv=C3=B4se?= an 222 de la =?utf-8?Q?R?= =?utf-8?Q?=C3=A9volution?= X-PGP-Key-ID: 0xEA52ECF4 X-PGP-Key: http://www.fdn.fr/~lcourtes/ludovic.asc X-PGP-Fingerprint: 83C4 F8E5 10A3 3B4C 5BEA D15D 77DD 95E2 EA52 ECF4 X-OS: x86_64-unknown-linux-gnu User-Agent: Gnus/5.130007 (Ma Gnus v0.7) Emacs/24.3 (gnu/linux) X-IsSubscribed: yes X-SW-Source: 2014-01/txt/msg00604.txt.bz2 Doug Evans skribis: > - improves SIGINT handling > Extension languages that can use GDB's SIGINT handler are termed "cooperative" > and interrupts are "moved" when the extension language changes. > Extension languages that can't use GDB's SIGINT handler have to > install their own > SIGINT handler and must call check_quit_flag appropriately (at least > once at startup). Nice. This sounds like an easy way to solve the problem for Guile, until it’s signal handling support can be used the way we’d like. Thanks, Ludo’.