diff options
author | Bruce Evans <bde@FreeBSD.org> | 1996-06-08 11:03:19 +0000 |
---|---|---|
committer | Bruce Evans <bde@FreeBSD.org> | 1996-06-08 11:03:19 +0000 |
commit | d85327d7bc553a0f20399173f3f75059e5255e59 (patch) | |
tree | c5c3afe6bdce3dfbb19588158ca8776693313233 /gnu/usr.bin/binutils/gdb | |
parent | 80b53b4fd554f7d8980ae5c4ef4e4e6329095fa9 (diff) | |
download | src-d85327d7bc553a0f20399173f3f75059e5255e59.tar.gz src-d85327d7bc553a0f20399173f3f75059e5255e59.zip |
Stop using the alias `pcb_ptd' for `pcb_tcc.tss_cr3'. Use the (existing)
alias `pcb_cr3' instead. That is still one alias too many, but is convenient
for me since I've replaced the tss in the pcb by a few scalar variables in
the pcb.
Notes
Notes:
svn path=/head/; revision=16215
Diffstat (limited to 'gnu/usr.bin/binutils/gdb')
-rw-r--r-- | gnu/usr.bin/binutils/gdb/i386/freebsd-nat.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/usr.bin/binutils/gdb/i386/freebsd-nat.c b/gnu/usr.bin/binutils/gdb/i386/freebsd-nat.c index 15c9c087578a..cdbb60af009e 100644 --- a/gnu/usr.bin/binutils/gdb/i386/freebsd-nat.c +++ b/gnu/usr.bin/binutils/gdb/i386/freebsd-nat.c @@ -17,7 +17,7 @@ You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - $Id: freebsd-nat.c,v 1.8 1996/05/02 09:42:45 phk Exp $ + $Id: freebsd-nat.c,v 1.9 1996/05/02 13:08:51 phk Exp $ */ #include <sys/types.h> @@ -521,7 +521,7 @@ CORE_ADDR addr; PTD = kvtophys(fd, ksym_lookup("PTD")); current_ptd = PTD; } else - current_ptd = pcb.pcb_ptd; + current_ptd = pcb.pcb_cr3; /* * Read the first-level page table (ptd). |