summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Anderson <davea@sgi.com>2004-10-11 16:35:28 +0000
committerDavid Anderson <davea@sgi.com>2004-10-11 16:35:28 +0000
commit6870494e6e9d26d768c36633f478f08883bda6f3 (patch)
tree5c2445d0d7244c669c8de91f1d3bc7d7a1081303
parent3629f667209c2705bbc6ca4f1db56cf0226608b6 (diff)
downloadgdb-6870494e6e9d26d768c36633f478f08883bda6f3.tar.gz
2004-10-11 David Anderson <davea@sgi.com>
* regcache.c (regcache_raw_read): Comment was missing "to". Extraneous ' removed. * gdb_thread_db.h (struct td_thrinfo): ti_lid field comment now describes use.
-rw-r--r--gdb/ChangeLog8
-rw-r--r--gdb/gdb_thread_db.h2
-rw-r--r--gdb/regcache.c4
3 files changed, 11 insertions, 3 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index 7afd33399b4..94c5182e111 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,3 +1,10 @@
+2004-10-11 David Anderson <davea@sgi.com>
+
+ * regcache.c (regcache_raw_read): Comment was missing "to".
+ Extraneous ' removed.
+ * gdb_thread_db.h (struct td_thrinfo): ti_lid field
+ comment now describes use.
+
2004-10-11 Orjan Friberg <orjanf@axis.com>
* cris-tdep.c (cris_sigtramp_start, cris_rt_sigtramp_start)
@@ -240,6 +247,7 @@
* mips-tdep.c (mips32_next_pc): Check the register's contents,
not its number for BLEZ/BLEZL and BGTZ/BGTZL.
+>>>>>>> 1.6475
2004-10-07 Kei Sakamoto <sakamoto.kei@renesas.com>
* m32r-tdep.c (decode_prologue): Support functions written
diff --git a/gdb/gdb_thread_db.h b/gdb/gdb_thread_db.h
index 81dd0a062db..0a28534990f 100644
--- a/gdb/gdb_thread_db.h
+++ b/gdb/gdb_thread_db.h
@@ -292,7 +292,7 @@ typedef struct td_thrinfo
intptr_t ti_sp; /* Unused. */
short int ti_flags; /* Unused. */
int ti_pri; /* Thread priority. */
- lwpid_t ti_lid; /* Unused. */
+ lwpid_t ti_lid; /* Kernel pid for this thread. */
sigset_t ti_sigmask; /* Signal mask. */
unsigned char ti_traceme; /* Nonzero if event reporting
enabled. */
diff --git a/gdb/regcache.c b/gdb/regcache.c
index 12721c330e3..f34da7965eb 100644
--- a/gdb/regcache.c
+++ b/gdb/regcache.c
@@ -616,8 +616,8 @@ regcache_raw_read (struct regcache *regcache, int regnum, void *buf)
target_fetch_registers (regnum);
#if 0
/* FIXME: cagney/2004-08-07: At present a number of targets
- forget (or didn't know that they needed) set this leading to
- panics. Also is the problem that target's need to indicate
+ forget (or didn't know that they needed) to set this leading to
+ panics. Also is the problem that targets need to indicate
that a register is in one of the possible states: valid,
undefined, unknown. The last of which isn't yet
possible. */