gdbsupport, gdb: give names to observers
Give a name to each observer, this will help produce more meaningful debug message. gdbsupport/ChangeLog: * observable.h (class observable) <struct observer> <observer>: Add name parameter. <name>: New field. <attach>: Add name parameter, update all callers. Change-Id: Ie0cc4664925215b8d2b09e026011b7803549fba0
This commit is contained in:
parent
ec098003e2
commit
c90e7d6352
47 changed files with 219 additions and 149 deletions
12
gdb/infrun.c
12
gdb/infrun.c
|
@ -9759,11 +9759,13 @@ enabled by default on some platforms."),
|
|||
inferior_ptid = null_ptid;
|
||||
target_last_wait_ptid = minus_one_ptid;
|
||||
|
||||
gdb::observers::thread_ptid_changed.attach (infrun_thread_ptid_changed);
|
||||
gdb::observers::thread_stop_requested.attach (infrun_thread_stop_requested);
|
||||
gdb::observers::thread_exit.attach (infrun_thread_thread_exit);
|
||||
gdb::observers::inferior_exit.attach (infrun_inferior_exit);
|
||||
gdb::observers::inferior_execd.attach (infrun_inferior_execd);
|
||||
gdb::observers::thread_ptid_changed.attach (infrun_thread_ptid_changed,
|
||||
"infrun");
|
||||
gdb::observers::thread_stop_requested.attach (infrun_thread_stop_requested,
|
||||
"infrun");
|
||||
gdb::observers::thread_exit.attach (infrun_thread_thread_exit, "infrun");
|
||||
gdb::observers::inferior_exit.attach (infrun_inferior_exit, "infrun");
|
||||
gdb::observers::inferior_execd.attach (infrun_inferior_execd, "infrun");
|
||||
|
||||
/* Explicitly create without lookup, since that tries to create a
|
||||
value with a void typed value, and when we get here, gdbarch
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue