From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from eggs.gnu.org (eggs.gnu.org [IPv6:2001:470:142:3::10]) by sourceware.org (Postfix) with ESMTPS id 616003851ABA for ; Mon, 5 Jun 2023 12:05:57 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org 616003851ABA Authentication-Results: sourceware.org; dmarc=pass (p=none dis=none) header.from=gnu.org Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=gnu.org Received: from fencepost.gnu.org ([2001:470:142:3::e]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1q68yC-0006fm-Qz; Mon, 05 Jun 2023 08:05:56 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=References:Subject:In-Reply-To:To:From:Date: mime-version; bh=x8TT6iBBDVf7XQHz+kCS0dGsf79nzl2x1haztV6lP4M=; b=lvzPfThUeQqf QwldbR7Ltn/0lI0lkYw74dPAWRXaJPTaxTiO/20h5TorKAQHsOhSgu3eHQef7MeAKIklzLjoxJZfP lov+ZsLarChOCHbuzZhesSaCasua2e3GOi45szS7O0aVoIWCDyfROgRdKZZ0HXMFirOHARWYP1Wrm IBjA2jXpi5EnJBzrDp8//ardGWaHKZSAo1qRfc2kVT9T0M1619mqD251KmOWV6GbNM/Iu2Akuh+Oa I4Z4mgFhJajXXceOhG4xqeX2wFTj9SSMnU2sYtg52FPa8fHbT2ipQJDe1mYgYj3OBHneaT7VLRQUw /CCAX+yf3a1a2fA37I3JKg==; Received: from [87.69.77.57] (helo=home-c4e4a596f7) by fencepost.gnu.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1q68yC-0003VC-6i; Mon, 05 Jun 2023 08:05:56 -0400 Date: Mon, 05 Jun 2023 15:05:55 +0300 Message-Id: <83mt1e3yho.fsf@gnu.org> From: Eli Zaretskii To: Simon Farre Cc: gdb-patches@sourceware.org In-Reply-To: <20230605114151.61322-1-simon.farre.cx@gmail.com> (message from Simon Farre via Gdb-patches on Mon, 5 Jun 2023 13:41:51 +0200) Subject: Re: [PATCH v5] gdb/Python: Added ThreadExitedEvent References: <20230605114151.61322-1-simon.farre.cx@gmail.com> X-Spam-Status: No, score=1.7 required=5.0 tests=BAYES_00,DKIMWL_WL_HIGH,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,RCVD_IN_BARRACUDACENTRAL,SPF_HELO_PASS,SPF_PASS,TXREP,T_SCC_BODY_TEXT_LINE autolearn=no autolearn_force=no version=3.4.6 X-Spam-Level: * X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org List-Id: > Cc: Simon Farre > Date: Mon, 5 Jun 2023 13:41:51 +0200 > From: Simon Farre via Gdb-patches > > gdb/NEWS | 2 + > gdb/doc/python.texi | 10 ++++ > gdb/python/py-all-events.def | 1 + > gdb/python/py-event-types.def | 5 ++ > gdb/python/py-event.h | 4 ++ > gdb/python/py-inferior.c | 3 ++ > gdb/python/py-threadevent.c | 22 +++++++++ > gdb/testsuite/gdb.python/py-thread-exited.c | 37 ++++++++++++++ > gdb/testsuite/gdb.python/py-thread-exited.exp | 49 +++++++++++++++++++ > gdb/testsuite/gdb.python/py-thread-exited.py | 31 ++++++++++++ > 10 files changed, 164 insertions(+) > create mode 100644 gdb/testsuite/gdb.python/py-thread-exited.c > create mode 100644 gdb/testsuite/gdb.python/py-thread-exited.exp > create mode 100644 gdb/testsuite/gdb.python/py-thread-exited.py The documentation parts are okay, thanks. Reviewed-By: Eli Zaretskii