diff options
author | Mark Kettenis <kettenis@gnu.org> | 2004-09-26 19:44:50 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@gnu.org> | 2004-09-26 19:44:50 +0000 |
commit | 771e236cf062089d49ae381eb632f9d8554d5860 (patch) | |
tree | 14d159c160582e920d84f45eb83d59ede03af9a6 /gdb | |
parent | 3691b3bece328b9c4810dd6a9c2a0effa011b574 (diff) | |
download | gdb-771e236cf062089d49ae381eb632f9d8554d5860.zip gdb-771e236cf062089d49ae381eb632f9d8554d5860.tar.gz gdb-771e236cf062089d49ae381eb632f9d8554d5860.tar.bz2 |
* i386fbsd-nat.c (_initialize_i386fbsd_nat): Group target related
code together.
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/ChangeLog | 3 | ||||
-rw-r--r-- | gdb/i386fbsd-nat.c | 6 |
2 files changed, 6 insertions, 3 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 5ba93fa..8395819 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,8 @@ 2004-09-26 Mark Kettenis <kettenis@gnu.org> + * i386fbsd-nat.c (_initialize_i386fbsd_nat): Group target related + code together. + * config/i386/nm-fbsd64.h: Remove file. * config/i386/fbsd64.mh (NAT_FILE): Set to config/nm-nbsd.h. diff --git a/gdb/i386fbsd-nat.c b/gdb/i386fbsd-nat.c index ca3b95d..bf4bd94 100644 --- a/gdb/i386fbsd-nat.c +++ b/gdb/i386fbsd-nat.c @@ -131,6 +131,9 @@ _initialize_i386fbsd_nat (void) t->to_make_corefile_notes = fbsd_make_corefile_notes; add_target (t); + /* Support debugging kernel virtual memory images. */ + bsd_kvm_add_target (i386fbsd_supply_pcb); + /* FreeBSD provides a kern.ps_strings sysctl that we can use to locate the sigtramp. That way we can still recognize a sigtramp if its location is changed in a new kernel. Of course this is @@ -153,7 +156,4 @@ _initialize_i386fbsd_nat (void) } } #endif - - /* Support debugging kernel virtual memory images. */ - bsd_kvm_add_target (i386fbsd_supply_pcb); } |