gdb: add inferior_cloned observable
authorSimon Marchi <simon.marchi@efficios.com>
Thu, 13 Apr 2023 20:18:34 +0000 (16:18 -0400)
committerSimon Marchi <simon.marchi@efficios.com>
Fri, 15 Sep 2023 20:16:26 +0000 (16:16 -0400)
The following patch makes the amdgpu port transfer a property from the
original inferior to the new inferior when using the clone-inferior
command.  Add the inferior_cloned observable to help with this.

Change-Id: Id845a799813ec49b1b7b2fcb97b07d0a1e5e2631
Approved-By: Tom Tromey <tom@tromey.com>
gdb/inferior.c
gdb/observable.c
gdb/observable.h

index ce4960a508aa2ce79afa85d3bbc15768717f6d75..550bbd2827c02da47555c30db5951cb3b5d9049b 100644 (file)
@@ -1041,6 +1041,8 @@ clone_inferior_command (const char *args, int from_tty)
       for (const std::string &unset_var
           : orginf->environment.user_unset_env ())
        inf->environment.unset (unset_var.c_str ());
+
+      gdb::observers::inferior_cloned.notify (orginf, inf);
     }
 }
 
index a18b863fb471a43991a450d5e41ecdde6b83893a..33e51223cf41ec9d6fe7f4973bf05ad979fda7e2 100644 (file)
@@ -58,6 +58,7 @@ DEFINE_OBSERVABLE (inferior_appeared);
 DEFINE_OBSERVABLE (inferior_pre_detach);
 DEFINE_OBSERVABLE (inferior_exit);
 DEFINE_OBSERVABLE (inferior_removed);
+DEFINE_OBSERVABLE (inferior_cloned);
 DEFINE_OBSERVABLE (memory_changed);
 DEFINE_OBSERVABLE (before_prompt);
 DEFINE_OBSERVABLE (gdb_datadir_changed);
index c0bafc51f143c2198ac201a871dee00ba618da92..4ea203c6fc38397b59d12770c9233d6ef0afb39c 100644 (file)
@@ -172,6 +172,10 @@ extern observable<struct inferior */* inf */> inferior_exit;
    This method is called immediately before freeing INF.  */
 extern observable<struct inferior */* inf */> inferior_removed;
 
+/* The inferior CLONE has been created by cloning INF.  */
+extern observable<struct inferior */* inf */, struct inferior */* clone */>
+    inferior_cloned;
+
 /* Bytes from DATA to DATA + LEN have been written to the inferior
    at ADDR.  */
 extern observable<struct inferior */* inferior */, CORE_ADDR /* addr */,