aboutsummaryrefslogtreecommitdiff
path: root/gdb
diff options
context:
space:
mode:
authorJoel Brobecker <brobecker@gnat.com>2013-05-08 06:19:32 +0000
committerJoel Brobecker <brobecker@gnat.com>2013-05-08 06:19:32 +0000
commit5d74e06193a226af8e14b6bf3530237c6a731418 (patch)
treea1368ca5b9d80d7e20d7fbed784da59cc42caa59 /gdb
parent814a3ff71b0e90f67eb9003ca37fa90094204152 (diff)
downloadgdb-5d74e06193a226af8e14b6bf3530237c6a731418.zip
gdb-5d74e06193a226af8e14b6bf3530237c6a731418.tar.gz
gdb-5d74e06193a226af8e14b6bf3530237c6a731418.tar.bz2
ti.ti_pc vs ti.ti_startfunc copy-pasto in sol-thread.c:info_cb
gdb/ChangeLog: * sol-thread.c (info_cb) [ti.ti_state == TD_THR_SLEEP]: Replace ti.ti_startfunc by ti.ti_pc. Probably OK to commit without approval, so will likely do so in the next few days.
Diffstat (limited to 'gdb')
-rw-r--r--gdb/ChangeLog5
-rw-r--r--gdb/sol-thread.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index f830db6..ff51bc7 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,5 +1,10 @@
2013-05-08 Joel Brobecker <brobecker@adacore.com>
+ * sol-thread.c (info_cb) [ti.ti_state == TD_THR_SLEEP]:
+ Replace ti.ti_startfunc by ti.ti_pc.
+
+2013-05-08 Joel Brobecker <brobecker@adacore.com>
+
* solib-aix.c (solib_aix_free_library_list): New function
for the case where HAVE_LIBEXPAT is not defined.
diff --git a/gdb/sol-thread.c b/gdb/sol-thread.c
index f5ea3be..6faf91d 100644
--- a/gdb/sol-thread.c
+++ b/gdb/sol-thread.c
@@ -1137,7 +1137,7 @@ info_cb (const td_thrhandle_t *th, void *s)
SYMBOL_PRINT_NAME (msym.minsym));
else
printf_filtered (" - Sleep func: %s\n",
- paddress (target_gdbarch (), ti.ti_startfunc));
+ paddress (target_gdbarch (), ti.ti_pc));
}
/* Wrap up line, if necessary. */