From: "Aktemur, Tankut Baris" <tankut.baris.aktemur@intel.com>
To: "gdb-patches@sourceware.org" <gdb-patches@sourceware.org>
Subject: RE: [PATCH v3 0/2] Querying registers of already-exited processes
Date: Tue, 28 Mar 2023 13:40:05 +0000 [thread overview]
Message-ID: <DM4PR11MB7303EC9E9D74C2FAE75A4989C4889@DM4PR11MB7303.namprd11.prod.outlook.com> (raw)
In-Reply-To: <MWHPR1101MB227104EE4E04E4846B0540B0C4E99@MWHPR1101MB2271.namprd11.prod.outlook.com>
Kindly pinging.
Thanks
-Baris
On Friday, December 23, 2022 6:11 PM Aktemur, Tankut Baris wrote:
> Hello,
>
> It seems it has been more than two years since I've submitted v1 of the series
> below. I've pinged it many times. Shall I keep pinging or should I give up? :)
>
> Just in case, here is the version that rebases the series on the current master.
>
> https://github.com/barisaktemur/gdb/tree/wip/querying-registers-of-already-exited-processes
>
> Thanks
> -Baris
>
>
> On Wednesday, March 23, 2022 2:06 PM, Aktemur, Tankut Baris wrote:
> >
> > Hello,
> >
> > This series can be considered a continuation of
> >
> > commit 4778a5f87d253399083565b4919816f541ebe414
> > Author: Tom de Vries <tdevries@suse.de>
> > Date: Tue Apr 21 15:45:57 2020 +0200
> >
> > [gdb] Fix hang after ext sigkill
> >
> > and
> >
> > commit 47f1aceffa02be4726b854082d7587eb259136e0
> > Author: Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
> > Date: Thu May 14 13:59:54 2020 +0200
> >
> > gdb/infrun: handle already-exited threads when attempting to stop
> >
> > The starting point was PR gdb/26877:
> >
> > https://sourceware.org/bugzilla/show_bug.cgi?id=26877
> >
> > Revision v1 of the series is available at
> >
> > https://sourceware.org/pipermail/gdb-patches/2020-November/173255.html
> >
> > Revision v2 of the series is available at
> >
> > https://sourceware.org/pipermail/gdb-patches/2022-February/185784.html
> >
> > This revision (v3)
> >
> > - rebases on the current master.
> > - addresses Bruno's comments in Patch 1/2.
> >
> > Regards
> > Baris
> >
> > Tankut Baris Aktemur (2):
> > gdb/regcache: return REG_UNAVAILABLE in raw_read if
> > NOT_AVAILABLE_ERROR is seen
> > gdb: raise and handle NOT_AVAILABLE_ERROR when accessing frame PC
> >
> > gdb/amd64-linux-nat.c | 3 +-
> > gdb/regcache.c | 12 ++-
> > gdb/remote.c | 20 +++--
> > gdb/stack.c | 33 +++++++-
> > gdb/testsuite/gdb.threads/killed-outside.exp | 7 +-
> > .../gdb.tui/multi-exit-remove-inferior.c | 21 +++++
> > .../gdb.tui/multi-exit-remove-inferior.exp | 80 +++++++++++++++++++
> > 7 files changed, 163 insertions(+), 13 deletions(-)
> > create mode 100644 gdb/testsuite/gdb.tui/multi-exit-remove-inferior.c
> > create mode 100644 gdb/testsuite/gdb.tui/multi-exit-remove-inferior.exp
> >
> > --
> > 2.33.1
Intel Deutschland GmbH
Registered Address: Am Campeon 10, 85579 Neubiberg, Germany
Tel: +49 89 99 8853-0, www.intel.de <http://www.intel.de>
Managing Directors: Christin Eisenschmid, Sharon Heck, Tiffany Doon Silva
Chairperson of the Supervisory Board: Nicole Lau
Registered Office: Munich
Commercial Register: Amtsgericht Muenchen HRB 186928
prev parent reply other threads:[~2023-03-28 13:40 UTC|newest]
Thread overview: 22+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-02-08 9:15 [PATCH v2 " Tankut Baris Aktemur
2022-02-08 9:15 ` [PATCH v2 1/2] gdb/regcache: return REG_UNAVAILABLE if raw_update raises NOT_AVAILABLE_ERROR Tankut Baris Aktemur
2022-03-16 15:18 ` Bruno Larsen
2022-03-23 12:55 ` Aktemur, Tankut Baris
2022-02-08 9:15 ` [PATCH v2 2/2] gdb: raise and handle NOT_AVAILABLE_ERROR when accessing frame PC Tankut Baris Aktemur
2022-03-16 17:26 ` Bruno Larsen
2022-03-23 12:55 ` Aktemur, Tankut Baris
2022-03-23 13:34 ` Bruno Larsen
2022-03-24 8:46 ` Aktemur, Tankut Baris
2022-02-22 7:31 ` [PATCH v2 0/2] Querying registers of already-exited processes Aktemur, Tankut Baris
2022-03-07 8:00 ` Aktemur, Tankut Baris
2022-03-23 13:05 ` [PATCH v3 " Tankut Baris Aktemur
2022-03-23 13:05 ` [PATCH v3 1/2] gdb/regcache: return REG_UNAVAILABLE in raw_read if NOT_AVAILABLE_ERROR is seen Tankut Baris Aktemur
2022-03-23 13:05 ` [PATCH v3 2/2] gdb: raise and handle NOT_AVAILABLE_ERROR when accessing frame PC Tankut Baris Aktemur
2022-05-04 7:19 ` [PATCH v3 0/2] Querying registers of already-exited processes Aktemur, Tankut Baris
2022-12-23 17:10 ` Aktemur, Tankut Baris
2023-01-17 20:40 ` Aktemur, Tankut Baris
2023-01-24 10:35 ` Aktemur, Tankut Baris
2023-01-31 20:14 ` Aktemur, Tankut Baris
2023-02-20 13:07 ` Aktemur, Tankut Baris
2023-03-03 7:46 ` Aktemur, Tankut Baris
2023-03-28 13:40 ` Aktemur, Tankut Baris [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=DM4PR11MB7303EC9E9D74C2FAE75A4989C4889@DM4PR11MB7303.namprd11.prod.outlook.com \
--to=tankut.baris.aktemur@intel.com \
--cc=gdb-patches@sourceware.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).