diff options
author | Mark Kettenis <kettenis@gnu.org> | 2005-05-08 16:27:34 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@gnu.org> | 2005-05-08 16:27:34 +0000 |
commit | 63c0089f205d68a0aea7074ee29de8c10fc2c27c (patch) | |
tree | 85a4f41f6116bf26e5cb46f3391587bfa64b9f6c /gdb/i386obsd-tdep.c | |
parent | b57b6c2e22c1cac0016636a25697ef651af1b5eb (diff) | |
download | gdb-63c0089f205d68a0aea7074ee29de8c10fc2c27c.zip gdb-63c0089f205d68a0aea7074ee29de8c10fc2c27c.tar.gz gdb-63c0089f205d68a0aea7074ee29de8c10fc2c27c.tar.bz2 |
* i386-tdep.c (i386_breakpoint_from_pc): Change return type to
`const gdb_byte *'. Use gdb_byte for break_insn.
(i386_follow_jump): Use gdb_byte for op.
(i386_analyze_struct_return): Use gdb_byte for proto1, proto2, buf
and op.
(i386_skip_probe): Use gdb_byte for buf and op.
(struct i386_insn): Use gdb_byte for insn and mask.
(i386_match_insn, i386_analyze_frame_setup)
(i386_analyze_register_saves): Use gdb_byte for op.
(i386_skip_prologue): Use gdb_byte for pic_pat and op;
(i386_unwind_pc, i386_frame_cache, i386_sigtramp_frame_cache)
(i386_unwind_dummy_id, i386_get_longjmp_target): Use gdb_byte for
buf.
(i386_extract_return_value, i386_store_return_value): Use
`bfd_byte *' instead of `void *' for valbuf argument. Remove now
redundant cast.
(i386_pseudo_register_read, i386_pseudo_register_write): Use
gdb_byte for mmx_buf.
(i386_register_to_value, i386_value_to_register): Use `gdb_byte *'
instead of `char *' for buf.
(i386_supply_gregset, i386_collect_gregset): Use `gdb_byte *'
instead of `char *' for regs.
(i386_svr4_sigcontext_addr): Use gdb_byte for buf.
* i386obsd-tdep.c (i386obsd_sigtramp_p): Use gdb_byte for
sigreturn and `gdb_byte *' for buf.
(i386obsd_aout_supply_regset): Use `const gdb_byte *' in cast.
(i386obsd_supply_uthread, i386obsd_collect_uthread): Use gdb_byte
for buf.
* i386bsd-tdep.c (i386bsd_sigcontext_addr): Use gdb_byte for buf.
Diffstat (limited to 'gdb/i386obsd-tdep.c')
-rw-r--r-- | gdb/i386obsd-tdep.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/gdb/i386obsd-tdep.c b/gdb/i386obsd-tdep.c index 5eb0444..7a381bc 100644 --- a/gdb/i386obsd-tdep.c +++ b/gdb/i386obsd-tdep.c @@ -60,14 +60,15 @@ i386obsd_sigtramp_p (struct frame_info *next_frame) { CORE_ADDR pc = frame_pc_unwind (next_frame); CORE_ADDR start_pc = (pc & ~(i386obsd_page_size - 1)); - const char sigreturn[] = + const gdb_byte sigreturn[] = { 0xb8, 0x67, 0x00, 0x00, 0x00, /* movl $SYS_sigreturn, %eax */ 0xcd, 0x80 /* int $0x80 */ }; size_t buflen = sizeof sigreturn; - char *name, *buf; + gdb_byte *buf; + char *name; /* If the function has a valid symbol name, it isn't a trampoline. */ @@ -218,7 +219,7 @@ i386obsd_supply_uthread (struct regcache *regcache, { CORE_ADDR sp_addr = addr + I386OBSD_UTHREAD_ESP_OFFSET; CORE_ADDR sp = 0; - char buf[4]; + gdb_byte buf[4]; int i; gdb_assert (regnum >= -1); @@ -261,7 +262,7 @@ i386obsd_collect_uthread (const struct regcache *regcache, { CORE_ADDR sp_addr = addr + I386OBSD_UTHREAD_ESP_OFFSET; CORE_ADDR sp = 0; - char buf[4]; + gdb_byte buf[4]; int i; gdb_assert (regnum >= -1); |