diff options
author | Daniel Jacobowitz <drow@false.org> | 2005-09-04 16:18:20 +0000 |
---|---|---|
committer | Daniel Jacobowitz <drow@false.org> | 2005-09-04 16:18:20 +0000 |
commit | ee057212343faef868b546ce17e9dfc3b370f8e0 (patch) | |
tree | a2b1f32ba5ad16e317c1d9b695959efef068b462 /gdb/inftarg.c | |
parent | 7c04e189032a40c4d4dd414ed8e563b4385bd8bc (diff) | |
download | gdb-ee057212343faef868b546ce17e9dfc3b370f8e0.zip gdb-ee057212343faef868b546ce17e9dfc3b370f8e0.tar.gz gdb-ee057212343faef868b546ce17e9dfc3b370f8e0.tar.bz2 |
* inf-child.c (inf_child_follow_fork): Add OPS argument.
* inf-ptrace.c (inf_ptrace_follow_fork): Likewise.
* inf-ttrace.c (inf_ttrace_follow_fork): Likewise.
* inftarg.c (child_follow_fork): Likewise.
* linux-nat.c (child_follow_fork): Likewise. Use ops instead of
&deprecated_child_ops.
* target.c (update_current_target): Do not inherit to_follow_fork.
(target_follow_fork): New function.
(debug_to_follow_fork): Remove.
(setup_target_debug): Don't set to_follow_fork.
* target.h (struct target_ops): Add struct target_ops * to
to_follow_fork.
(child_follow_fork): Add struct target_ops * argument.
(target_follow_fork): Replace macro with prototype.
Diffstat (limited to 'gdb/inftarg.c')
-rw-r--r-- | gdb/inftarg.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/inftarg.c b/gdb/inftarg.c index 279f3a7..5d7750d 100644 --- a/gdb/inftarg.c +++ b/gdb/inftarg.c @@ -1,7 +1,7 @@ /* Target-vector operations for controlling Unix child processes, for GDB. Copyright 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1998, 1999, - 2000, 2002, 2003, 2004 Free Software Foundation, Inc. + 2000, 2002, 2003, 2004, 2005 Free Software Foundation, Inc. Contributed by Cygnus Support. @@ -401,7 +401,7 @@ child_remove_vfork_catchpoint (int pid) #if !defined(CHILD_FOLLOW_FORK) int -child_follow_fork (int follow_child) +child_follow_fork (struct target_ops *ops, int follow_child) { /* This version of Unix doesn't support following fork or vfork events. */ return 0; |