aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Cagney <cagney@redhat.com>2000-03-29 08:29:00 +0000
committerAndrew Cagney <cagney@redhat.com>2000-03-29 08:29:00 +0000
commit480ff1fb283f4aebf368e17cabe3fa598768474f (patch)
tree15ebd36fcc816f54838feaaa89588028083edcad
parentf1251bdd6bd703ced6830769d610bbaa1bd56b6b (diff)
downloadgdb-480ff1fb283f4aebf368e17cabe3fa598768474f.zip
gdb-480ff1fb283f4aebf368e17cabe3fa598768474f.tar.gz
gdb-480ff1fb283f4aebf368e17cabe3fa598768474f.tar.bz2
Fix thread-extra-info name. qfThreadExtraInfo ->qThreadExtraInfo.
-rw-r--r--gdb/ChangeLog5
-rw-r--r--gdb/doc/ChangeLog5
-rw-r--r--gdb/doc/gdb.texinfo2
-rw-r--r--gdb/remote.c2
4 files changed, 12 insertions, 2 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index 27d0c05..7f67e14 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,3 +1,8 @@
+Tue Mar 28 18:28:40 2000 Andrew Cagney <cagney@b1.cygnus.com>
+
+ * remote.c (remote_threads_extra_info): Replace qfThreadExtraInfo
+ with qThreadExtraInfo.
+
2000-03-29 J.T. Conklin <jtc@redback.com>
* i386nbsd-nat.c (fetch_core_registers): Make static.
diff --git a/gdb/doc/ChangeLog b/gdb/doc/ChangeLog
index 03a704b..e3fa4ba 100644
--- a/gdb/doc/ChangeLog
+++ b/gdb/doc/ChangeLog
@@ -1,3 +1,8 @@
+Tue Mar 28 18:28:45 2000 Andrew Cagney <cagney@b1.cygnus.com>
+
+ * gdb.texinfo (Protocol): Replace ``qfThreadExtraInfo'' with
+ qThreadExtraInfo.
+
2000-03-28 J.T. Conklin <jtc@redback.com>
* gdb.texinfo: Clarify which remote debug protocol commands are
diff --git a/gdb/doc/gdb.texinfo b/gdb/doc/gdb.texinfo
index 6aca7ad..4308756 100644
--- a/gdb/doc/gdb.texinfo
+++ b/gdb/doc/gdb.texinfo
@@ -9465,7 +9465,7 @@ respond to each reply with a request for more thread ids (using the
(lower-case el, for @code{'last'}).
@item extra thread info
-@tab @code{qfThreadExtraInfo,}@var{<id>}
+@tab @code{q}@code{ThreadExtraInfo}@code{,}@var{id}
@tab
@item
@tab
diff --git a/gdb/remote.c b/gdb/remote.c
index 2e56072..54d3b2c 100644
--- a/gdb/remote.c
+++ b/gdb/remote.c
@@ -1654,7 +1654,7 @@ remote_threads_extra_info (struct thread_info *tp)
if (use_threadextra_query)
{
- sprintf (bufp, "qfThreadExtraInfo,%x", tp->pid);
+ sprintf (bufp, "qThreadExtraInfo,%x", tp->pid);
putpkt (bufp);
getpkt (bufp, PBUFSIZ, 0);
if (bufp[0] != 0)