diff options
author | Simon Marchi <simon.marchi@polymtl.ca> | 2021-04-24 19:26:04 -0400 |
---|---|---|
committer | Simon Marchi <simon.marchi@polymtl.ca> | 2021-04-24 19:26:41 -0400 |
commit | c90e7d6352b2e16ac007d08b2e03ae10081147b5 (patch) | |
tree | 2ca6bb8a1d338ff48f2eed24dcb25300e4204f54 /gdb/infrun.c | |
parent | ec098003e27d67bca9e9880320e26ab8ad30fe31 (diff) | |
download | gdb-c90e7d6352b2e16ac007d08b2e03ae10081147b5.zip gdb-c90e7d6352b2e16ac007d08b2e03ae10081147b5.tar.gz gdb-c90e7d6352b2e16ac007d08b2e03ae10081147b5.tar.bz2 |
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
Diffstat (limited to 'gdb/infrun.c')
-rw-r--r-- | gdb/infrun.c | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/gdb/infrun.c b/gdb/infrun.c index 2c31cf4..cfec079 100644 --- a/gdb/infrun.c +++ b/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 |