diff options
author | Daniel Jacobowitz <drow@false.org> | 2005-05-28 18:57:13 +0000 |
---|---|---|
committer | Daniel Jacobowitz <drow@false.org> | 2005-05-28 18:57:13 +0000 |
commit | cedea75781cffbdf243b4e1f6e892dcd67620454 (patch) | |
tree | ce2908e78305b18540baacf1e70c4ea9d1cde1e4 /gdb/remote.c | |
parent | 3b113db73fc48821f6cea1c799720303e5780a62 (diff) | |
download | gdb-cedea75781cffbdf243b4e1f6e892dcd67620454.zip gdb-cedea75781cffbdf243b4e1f6e892dcd67620454.tar.gz gdb-cedea75781cffbdf243b4e1f6e892dcd67620454.tar.bz2 |
From Wu Zhou <woodzltc@cn.ibm.com>:
* remote.c (struct gdb_ext_thread_info): Fix a comment typo.
(remote_unpack_thread_info_response): Likewise.
Diffstat (limited to 'gdb/remote.c')
-rw-r--r-- | gdb/remote.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/remote.c b/gdb/remote.c index bc12efd..f1d4a69 100644 --- a/gdb/remote.c +++ b/gdb/remote.c @@ -1114,7 +1114,7 @@ struct gdb_ext_thread_info int active; /* Has state interesting to GDB? regs, stack. */ char display[256]; /* Brief state display, name, - blocked/syspended. */ + blocked/suspended. */ char shortname[32]; /* To be used to name threads. */ char more_display[256]; /* Long info, statistics, queue depth, whatever. */ @@ -1489,7 +1489,7 @@ remote_unpack_thread_info_response (char *pkt, threadref *expectedref, int mask, length; unsigned int tag; threadref ref; - char *limit = pkt + (rs->remote_packet_size); /* plausable parsing limit */ + char *limit = pkt + (rs->remote_packet_size); /* plausible parsing limit */ int retval = 1; /* info->threadid = 0; FIXME: implement zero_threadref. */ |