diff options
author | Luis Machado <luisgpm@br.ibm.com> | 2013-09-03 17:22:45 +0000 |
---|---|---|
committer | Luis Machado <luisgpm@br.ibm.com> | 2013-09-03 17:22:45 +0000 |
commit | 07107ca6f983e2dde5fa669a56563760a1f44c11 (patch) | |
tree | dbc1afaf4e0a4a854a1761f333bbccc64a0c3e72 /gdb/target.h | |
parent | 3bec276888142e4f751eaf9011f02b049fed7295 (diff) | |
download | gdb-07107ca6f983e2dde5fa669a56563760a1f44c11.zip gdb-07107ca6f983e2dde5fa669a56563760a1f44c11.tar.gz gdb-07107ca6f983e2dde5fa669a56563760a1f44c11.tar.bz2 |
* 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.
Diffstat (limited to 'gdb/target.h')
-rw-r--r-- | gdb/target.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/target.h b/gdb/target.h index 6959503..7622465 100644 --- a/gdb/target.h +++ b/gdb/target.h @@ -440,7 +440,7 @@ struct target_ops int (*to_remove_fork_catchpoint) (int); int (*to_insert_vfork_catchpoint) (int); int (*to_remove_vfork_catchpoint) (int); - int (*to_follow_fork) (struct target_ops *, int); + int (*to_follow_fork) (struct target_ops *, int, int); int (*to_insert_exec_catchpoint) (int); int (*to_remove_exec_catchpoint) (int); int (*to_set_syscall_catchpoint) (int, int, int, int, int *); @@ -1235,7 +1235,7 @@ void target_create_inferior (char *exec_file, char *args, This function returns 1 if the inferior should not be resumed (i.e. there is another event pending). */ -int target_follow_fork (int follow_child); +int target_follow_fork (int follow_child, int detach_fork); /* On some targets, we can catch an inferior exec event when it occurs. These functions insert/remove an already-created |