diff options
Diffstat (limited to 'gdb/ia64-linux-nat.c')
-rw-r--r-- | gdb/ia64-linux-nat.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gdb/ia64-linux-nat.c b/gdb/ia64-linux-nat.c index 65e077b..abe532a 100644 --- a/gdb/ia64-linux-nat.c +++ b/gdb/ia64-linux-nat.c @@ -618,7 +618,7 @@ ia64_linux_remove_watchpoint (CORE_ADDR addr, int len, int type, } static void -ia64_linux_new_thread (ptid_t ptid) +ia64_linux_new_thread (struct lwp_info *lp) { int i, any; @@ -627,11 +627,11 @@ ia64_linux_new_thread (ptid_t ptid) { if (debug_registers[i] != 0) any = 1; - store_debug_register (ptid, i, debug_registers[i]); + store_debug_register (lp->ptid, i, debug_registers[i]); } if (any) - enable_watchpoints_in_psr (ptid); + enable_watchpoints_in_psr (lp->ptid); } static int |