diff options
author | J.T. Conklin <jtc@redback.com> | 2000-03-24 23:06:57 +0000 |
---|---|---|
committer | J.T. Conklin <jtc@redback.com> | 2000-03-24 23:06:57 +0000 |
commit | 537253712c33f326c1bd88f6ba4416427b665499 (patch) | |
tree | 2c59bc43c30c3187eeab81299b82d1ce37054909 /gdb/config | |
parent | 93d0e8c00989fcd84807fb44fb6980615d5978b5 (diff) | |
download | gdb-537253712c33f326c1bd88f6ba4416427b665499.tar.gz |
2000-03-24 J.T. Conklin <jtc@redback.com>
* i386/tm-nbsd.h (USE_STRUCT_CONVENTION): Define.
* i386nbsd-nat.c (i386nbsd_use_struct_convention): New function.
(fetch_core_registers): Read fp registers.
(i386nbsd_core_fns, _initialize_i386nbsd_nat): Added.
Diffstat (limited to 'gdb/config')
-rw-r--r-- | gdb/config/i386/tm-nbsd.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/gdb/config/i386/tm-nbsd.h b/gdb/config/i386/tm-nbsd.h index 3be47b03fad..66002ed2c09 100644 --- a/gdb/config/i386/tm-nbsd.h +++ b/gdb/config/i386/tm-nbsd.h @@ -26,6 +26,11 @@ #include "i386/tm-i386bsd.h" #include "tm-nbsd.h" +extern use_struct_convention_fn i386nbsd_use_struct_convention; +#define USE_STRUCT_CONVENTION(gcc_p, type) \ + i386nbsd_use_struct_convention(gcc_p, type) + + #define JB_ELEMENT_SIZE sizeof(int) /* jmp_buf[_JBLEN] is array of ints */ #define JB_PC 0 /* Setjmp()'s return PC saved here */ |