diff options
author | Simon Marchi <simon.marchi@polymtl.ca> | 2021-05-31 13:00:32 -0400 |
---|---|---|
committer | Simon Marchi <simon.marchi@polymtl.ca> | 2021-07-14 23:21:30 -0400 |
commit | 3a849a3454a53684ca3d679697adb1bfb56596cc (patch) | |
tree | bee2c0eb1fac46adad4de1fefeda09d41c2aa14c /gdb/fbsd-nat.c | |
parent | ff77083572522d805e631b287b4b9db68f596503 (diff) | |
download | gdb-3a849a3454a53684ca3d679697adb1bfb56596cc.zip gdb-3a849a3454a53684ca3d679697adb1bfb56596cc.tar.gz gdb-3a849a3454a53684ca3d679697adb1bfb56596cc.tar.bz2 |
gdb: pass child_ptid and fork kind to target_ops::follow_fork
This is a small cleanup I think would be nice, that I spotted while
doing the following patch.
gdb/ChangeLog:
* target.h (struct target_ops) <follow_fork>: Add ptid and
target_waitkind parameters.
(target_follow_fork): Likewise.
* target.c (default_follow_fork): Likewise.
(target_follow_fork): Likewise.
* fbsd-nat.h (class fbsd_nat_target) <follow_fork>: Likewise.
* fbsd-nat.c (fbsd_nat_target::follow_fork): Likewise.
* linux-nat.h (class linux_nat_target) <follow_fork>: Likewise.
* linux-nat.c (linux_nat_target::follow_fork): Likewise.
* obsd-nat.h (class obsd_nat_target) <follow_fork>: Likewise.
* obsd-nat.c (obsd_nat_target::follow_fork): Likewise.
* remote.c (class remote_target) <follow_fork>: Likewise.
* target-debug.h (target_debug_print_target_waitkind): New.
* target-delegates.c: Re-generate.
Change-Id: I5421a542f2e19100a22b74cc333d2b235d0de3c8
Diffstat (limited to 'gdb/fbsd-nat.c')
-rw-r--r-- | gdb/fbsd-nat.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gdb/fbsd-nat.c b/gdb/fbsd-nat.c index 33eddb5..0ae1195 100644 --- a/gdb/fbsd-nat.c +++ b/gdb/fbsd-nat.c @@ -1471,12 +1471,12 @@ fbsd_nat_target::create_inferior (const char *exec_file, the ptid of the followed inferior. */ void -fbsd_nat_target::follow_fork (bool follow_child, bool detach_fork) +fbsd_nat_target::follow_fork (ptid_t child_ptid, target_waitkind fork_kind, + bool follow_child, bool detach_fork) { if (!follow_child && detach_fork) { - struct thread_info *tp = inferior_thread (); - pid_t child_pid = tp->pending_follow.value.related_pid.pid (); + pid_t child_pid = child_ptid.pid (); /* Breakpoints have already been detached from the child by infrun.c. */ @@ -1485,7 +1485,7 @@ fbsd_nat_target::follow_fork (bool follow_child, bool detach_fork) perror_with_name (("ptrace")); #ifndef PTRACE_VFORK - if (tp->pending_follow.kind == TARGET_WAITKIND_VFORKED) + if (fork_kind == TARGET_WAITKIND_VFORKED) { /* We can't insert breakpoints until the child process has finished with the shared memory region. The parent |