* amd64fbsd-nat.c (amd64fbsd_supply_pcb): Conditionally compile in

support for pcb->pcb_{fs,ds,es,gs} on FreeBSD older than 8.0.
This commit is contained in:
Joel Brobecker 2009-10-16 23:18:27 +00:00
parent f2e3d4e2ec
commit 1f596238d5
2 changed files with 8 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2008-10-15 Steven G. Kargl <kargl@gcc.gnu.org>
* amd64fbsd-nat.c (amd64fbsd_supply_pcb): Conditionally compile in
support for pcb->pcb_{fs,ds,es,gs} on FreeBSD older than 8.0.
2009-10-15 Michael Eager <eager@eagercon.com>
* config/djgpp/fnchange.lst: Add translations for cpu-microblaze.c,

View File

@ -95,6 +95,7 @@ static int amd64fbsd32_r_reg_offset[I386_NUM_GREGS] =
#include <sys/types.h>
#include <machine/pcb.h>
#include <osreldate.h>
#include "bsd-kvm.h"
@ -123,10 +124,12 @@ amd64fbsd_supply_pcb (struct regcache *regcache, struct pcb *pcb)
regcache_raw_supply (regcache, 13, &pcb->pcb_r13);
regcache_raw_supply (regcache, 14, &pcb->pcb_r14);
regcache_raw_supply (regcache, 15, &pcb->pcb_r15);
#if (__FreeBSD_version < 800075)
regcache_raw_supply (regcache, AMD64_DS_REGNUM, &pcb->pcb_ds);
regcache_raw_supply (regcache, AMD64_ES_REGNUM, &pcb->pcb_es);
regcache_raw_supply (regcache, AMD64_FS_REGNUM, &pcb->pcb_fs);
regcache_raw_supply (regcache, AMD64_GS_REGNUM, &pcb->pcb_gs);
#endif
return 1;
}