summaryrefslogtreecommitdiff
path: root/gdb/ptx4-nat.c
diff options
context:
space:
mode:
Diffstat (limited to 'gdb/ptx4-nat.c')
-rw-r--r--gdb/ptx4-nat.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/ptx4-nat.c b/gdb/ptx4-nat.c
index ee74227756b..65eef9d3518 100644
--- a/gdb/ptx4-nat.c
+++ b/gdb/ptx4-nat.c
@@ -153,7 +153,7 @@ proc_iterate_over_mappings (int (*func) (int, CORE_ADDR))
curseg = 0;
while (1)
{
- rv = ptrace (PT_NEXT_VSEG, inferior_pid, &pv, curseg);
+ rv = ptrace (PT_NEXT_VSEG, PIDGET (inferior_ptid), &pv, curseg);
#ifdef VERBOSE_DEBUG
printf ("PT_NEXT_VSEG: rv %d errno %d\n", rv, errno);
#endif
@@ -187,7 +187,7 @@ proc_iterate_over_mappings (int (*func) (int, CORE_ADDR))
close (interp_fd);
return 0;
}
- rv = ptrace (PT_RDATA_PAGE, inferior_pid, buf2,
+ rv = ptrace (PT_RDATA_PAGE, PIDGET (inferior_ptid), buf2,
memptr);
if (-1 == rv)
{