gdb: add inferior_pre_detach observable
authorSimon Marchi <simon.marchi@efficios.com>
Wed, 28 Sep 2022 18:35:26 +0000 (14:35 -0400)
committerSimon Marchi <simon.marchi@polymtl.ca>
Thu, 2 Feb 2023 15:02:34 +0000 (10:02 -0500)
Add an observable notified in target_detach just before calling the
detach method on the inferior's target stack.  This allows observer to
do some work on the inferior while it's still ptrace-attached, in the
case of a native Linux inferior.  Specifically, the amd-dbgapi target
will need it in order to call amd_dbgapi_process_detach before the
process gets ptrace-detached.

Change-Id: I28b6065e251012a4c2db8a600fe13ba31671e3c9
Approved-By: Andrew Burgess <aburgess@redhat.com>
gdb/observable.c
gdb/observable.h
gdb/target.c

index 5906e58628ee751b64f8d24d805a4eec9ea7e457..28249a5ad0159e2c36b78032eff4734493b469bc 100644 (file)
@@ -62,6 +62,7 @@ DEFINE_OBSERVABLE (architecture_changed);
 DEFINE_OBSERVABLE (thread_ptid_changed);
 DEFINE_OBSERVABLE (inferior_added);
 DEFINE_OBSERVABLE (inferior_appeared);
+DEFINE_OBSERVABLE (inferior_pre_detach);
 DEFINE_OBSERVABLE (inferior_exit);
 DEFINE_OBSERVABLE (inferior_removed);
 DEFINE_OBSERVABLE (memory_changed);
index aed326e4338859c7a3ee7d8ae809c8fe87eb6459..efd0446e1689e7a18b39f031f2a9391ef89296b5 100644 (file)
@@ -181,6 +181,9 @@ extern observable<struct inferior */* inf */> inferior_added;
    process.  */
 extern observable<struct inferior */* inf */> inferior_appeared;
 
+/* Inferior INF is about to be detached.  */
+extern observable<struct inferior */* inf */> inferior_pre_detach;
+
 /* Either the inferior associated with INF has been detached from
    the process, or the process has exited.  */
 extern observable<struct inferior */* inf */> inferior_exit;
index d5bfd7d0849bd70087a2e7fbaaab062153375fd0..d0aa8f5cc6c1c4bcb4b8265642d7d23cda1dd5b5 100644 (file)
@@ -2528,6 +2528,8 @@ target_detach (inferior *inf, int from_tty)
 
   prepare_for_detach ();
 
+  gdb::observers::inferior_pre_detach.notify (inf);
+
   /* Hold a strong reference because detaching may unpush the
      target.  */
   auto proc_target_ref = target_ops_ref::new_reference (inf->process_target ());