| Index: gdb/ia64-hpux-nat.c
|
| diff --git a/gdb/ia64-hpux-nat.c b/gdb/ia64-hpux-nat.c
|
| index 4b42c2252f01dbcae27ef0a73be4a14ebae59523..07a433e5f3c4783c929e1725f88bf5f9e6912b88 100644
|
| --- a/gdb/ia64-hpux-nat.c
|
| +++ b/gdb/ia64-hpux-nat.c
|
| @@ -154,12 +154,12 @@ ia64_hpux_wait (struct target_ops *ops, ptid_t ptid,
|
| process it, and then resume the execution as if the event did
|
| not happen. */
|
| if (ourstatus->kind == TARGET_WAITKIND_STOPPED
|
| - && ourstatus->value.sig == TARGET_SIGNAL_TRAP
|
| + && ourstatus->value.sig == GDB_SIGNAL_TRAP
|
| && ia64_hpux_at_dld_breakpoint_p (new_ptid))
|
| {
|
| ia64_hpux_handle_dld_breakpoint (new_ptid);
|
|
|
| - target_resume (new_ptid, 0, TARGET_SIGNAL_0);
|
| + target_resume (new_ptid, 0, GDB_SIGNAL_0);
|
| ourstatus->kind = TARGET_WAITKIND_IGNORE;
|
| }
|
|
|
| @@ -679,10 +679,10 @@ ia64_hpux_mourn_inferior (struct target_ops *ops)
|
| }
|
|
|
| /* Prevent warning from -Wmissing-prototypes. */
|
| -void _initialize_hppa_hpux_nat (void);
|
| +void _initialize_ia64_hpux_nat (void);
|
|
|
| void
|
| -_initialize_hppa_hpux_nat (void)
|
| +_initialize_ia64_hpux_nat (void)
|
| {
|
| struct target_ops *t;
|
|
|
|
|