diff options
author | Kevin Buettner <kevinb@redhat.com> | 2000-06-13 03:17:11 +0000 |
---|---|---|
committer | Kevin Buettner <kevinb@redhat.com> | 2000-06-13 03:17:11 +0000 |
commit | 9ac12c358e695cc8a8fd486fe51b909b3b4527a3 (patch) | |
tree | 1f320f694d122bb141853937be21ee0ba57fec52 /gdb | |
parent | 26bfd1c08b470834342efafbfb7c53bd0c0b3136 (diff) | |
download | gdb-9ac12c358e695cc8a8fd486fe51b909b3b4527a3.zip gdb-9ac12c358e695cc8a8fd486fe51b909b3b4527a3.tar.gz gdb-9ac12c358e695cc8a8fd486fe51b909b3b4527a3.tar.bz2 |
Use PT_CFM in place of PT_CR_IFS.
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/ChangeLog | 7 | ||||
-rw-r--r-- | gdb/gdbserver/low-linux.c | 2 | ||||
-rw-r--r-- | gdb/ia64-linux-nat.c | 2 |
3 files changed, 9 insertions, 2 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index dfda1bb..95eddbb 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,10 @@ +2000-06-12 Bill Nottingham <notting@redhat.com> + + Patch applied by Kevin Buettner <kevinb@redhat.com>: + + * ia64-linux-nat.c, gdbserver/low-linux.c (u_offsets): PT_CR_IFS + is deprecated. Use PT_CFM instead. + 2000-06-12 Michael Snyder <msnyder@cleaver.cygnus.com> * breakpoint.c (breakpoint_thread_match): Fix comment. diff --git a/gdb/gdbserver/low-linux.c b/gdb/gdbserver/low-linux.c index 666dadf..75b6085 100644 --- a/gdb/gdbserver/low-linux.c +++ b/gdb/gdbserver/low-linux.c @@ -476,7 +476,7 @@ static int u_offsets[] = PT_PR, PT_CR_IIP, /* ip */ PT_CR_IPSR, /* psr */ - PT_CR_IFS, /* cfm */ + PT_CFM, /* cfm */ /* kernel registers not visible via ptrace interface (?) */ -1, -1, -1, -1, -1, -1, -1, -1, /* hole */ diff --git a/gdb/ia64-linux-nat.c b/gdb/ia64-linux-nat.c index 339c58b..6838134 100644 --- a/gdb/ia64-linux-nat.c +++ b/gdb/ia64-linux-nat.c @@ -236,7 +236,7 @@ static int u_offsets[] = PT_PR, PT_CR_IIP, /* ip */ PT_CR_IPSR, /* psr */ - PT_CR_IFS, /* cfm */ + PT_CFM, /* cfm */ /* kernel registers not visible via ptrace interface (?) */ -1, -1, -1, -1, -1, -1, -1, -1, /* hole */ |