* inf-child.c (inf_child_follow_fork) New parameter

detach_fork.
	* inf-ptrace.c (inf_ptrace_follow_fork): Likewise.
	* inf-ttrace.c (inf_ttrace_follow_fork): Likewise.
	* inferior.h (detach_fork): Remove.
	* infrun.c (detach_fork): Adjust comment and make it
	static.
	(follow_fork): Pass detach_fork parameter to
	target_follow_fork.
	* linux-nat.c (linux_child_follow_fork): New parameter
	detach_fork.
	* target.c (target_follow_fork): New parameter detach_fork.
	Pass detach_fork as parameter and print its value.
	* target.h (struct target_ops) <to_follow_fork>: New int
	parameter.
	(target_follow_fork): New parameter detach_fork.
This commit is contained in:
Luis Machado
2013-09-03 17:22:45 +00:00
parent 3bec276888
commit 07107ca6f9
9 changed files with 41 additions and 18 deletions

View File

@@ -119,11 +119,6 @@ extern int step_stop_if_no_debug;
are kept running freely. */
extern int non_stop;
/* If set (default), when following a fork, GDB will detach from one
the fork branches, child or parent. Exactly which branch is
detached depends on 'set follow-fork-mode' setting. */
extern int detach_fork;
/* When set (default), the target should attempt to disable the operating
system's address space randomization feature when starting an inferior. */
extern int disable_randomization;