diff options
author | Daniel Jacobowitz <drow@false.org> | 2005-12-22 16:13:20 +0000 |
---|---|---|
committer | Daniel Jacobowitz <drow@false.org> | 2005-12-22 16:13:20 +0000 |
commit | e5cc6d1129fca9be54457c858449fdef17405fa7 (patch) | |
tree | 3e2cc6c49548d856af451a7313ad44fc1f171a48 /gdb | |
parent | 6d566cffb02d92dfe6e8b3387d8bd8b4cf9e2abe (diff) | |
download | binutils-gdb-e5cc6d1129fca9be54457c858449fdef17405fa7.tar.gz |
* amd64obsd-tdep.c (amd64obsd_trapframe_sniffer): Spelling fix.
* i386obsd-tdep.c (i386obsd_trapframe_sniffer): Likewise.
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/amd64obsd-tdep.c | 2 | ||||
-rw-r--r-- | gdb/i386obsd-tdep.c | 2 |
3 files changed, 7 insertions, 2 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 933e363490c..9eed0710b3d 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2005-12-22 Daniel Jacobowitz <dan@codesourcery.com> + + * amd64obsd-tdep.c (amd64obsd_trapframe_sniffer): Spelling fix. + * i386obsd-tdep.c (i386obsd_trapframe_sniffer): Likewise. + 2005-12-22 Mark Kettenis <kettenis@gnu.org> * amd64obsd-tdep.c (amd64obsd_trapframe_cache): Fix typos. diff --git a/gdb/amd64obsd-tdep.c b/gdb/amd64obsd-tdep.c index 17c7219ecfb..924b0589ce5 100644 --- a/gdb/amd64obsd-tdep.c +++ b/gdb/amd64obsd-tdep.c @@ -418,7 +418,7 @@ amd64obsd_trapframe_sniffer (const struct frame_unwind *self, ULONGEST cs; char *name; - /* Check Current Privilige Level and bail out if we're not executing + /* Check Current Privilege Level and bail out if we're not executing in kernel space. */ cs = frame_unwind_register_unsigned (next_frame, AMD64_CS_REGNUM); if ((cs & I386_SEL_RPL) == I386_SEL_UPL) diff --git a/gdb/i386obsd-tdep.c b/gdb/i386obsd-tdep.c index 3202f160345..5902374e264 100644 --- a/gdb/i386obsd-tdep.c +++ b/gdb/i386obsd-tdep.c @@ -416,7 +416,7 @@ i386obsd_trapframe_sniffer (const struct frame_unwind *self, ULONGEST cs; char *name; - /* Check Current Privilige Level and bail out if we're not executing + /* Check Current Privilege Level and bail out if we're not executing in kernel space. */ cs = frame_unwind_register_unsigned (next_frame, I386_CS_REGNUM); if ((cs & I386_SEL_RPL) == I386_SEL_UPL) |