aboutsummaryrefslogtreecommitdiff
path: root/etc/Makefile.in
AgeCommit message (Expand)AuthorFilesLines
2009-07-30intl/Ralf Wildenhues1-1/+11
2007-03-27Add "make pdf" and "make install-pdf", from Brooks MosesDaniel Jacobowitz1-0/+41
2006-04-062006-04-06 Carlos O'Donell <carlos@codesourcery.com>Carlos O'Donell1-0/+17
2006-02-27bfd/doc/Carlos O'Donell1-3/+26
2005-05-19 * bfd/Makefile.am, binutils/Makefile.am, etc/Makefile.inZack Weinberg1-3/+1
2003-01-022003-01-02 H.J. Lu <hjl@gnu.org>H.J. Lu1-3/+5
2002-01-26 * Makefile.in (install): Depend on install-info.Hans-Peter Nilsson1-1/+2
1999-05-0319990502 sourceware importbinu_ss_19990502Richard Henderson1-0/+156
ype to void. * target.c (update_current_target): Update. (debug_to_insert_fork_catchpoint) (debug_to_insert_vfork_catchpoint) (debug_to_insert_exec_catchpoint): Update. * inf-child.c (inf_child_insert_fork_catchpoint) (inf_child_insert_vfork_catchpoint) (inf_child_insert_exec_catchpoint): Update. * breakpoint.c (insert_catchpoint): Update, do not throw an error. * linux-nat.c (child_insert_fork_catchpoint) (child_insert_vfork_catchpoint) (child_insert_exec_catchpoint): Update. * inftarg.c (child_insert_fork_catchpoint) (child_insert_vfork_catchpoint,) (child_insert_exec_catchpoint): Update.
Diffstat (limited to 'gdb/inftarg.c')
-rw-r--r--gdb/inftarg.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/gdb/inftarg.c b/gdb/inftarg.c
index 2c5de8f..2f04365 100644
--- a/gdb/inftarg.c
+++ b/gdb/inftarg.c
@@ -364,11 +364,11 @@ child_acknowledge_created_inferior (int pid)
#if !defined(CHILD_INSERT_FORK_CATCHPOINT)
-int
+void
child_insert_fork_catchpoint (int pid)
{
- /* This version of Unix doesn't support notification of fork events. */
- return 0;
+ /* This version of Unix doesn't support notification of fork
+ events. */
}
#endif
@@ -382,11 +382,11 @@ child_remove_fork_catchpoint (int pid)
#endif
#if !defined(CHILD_INSERT_VFORK_CATCHPOINT)
-int
+void
child_insert_vfork_catchpoint (int pid)
{
- /* This version of Unix doesn't support notification of vfork events. */
- return 0;
+ /* This version of Unix doesn't support notification of vfork
+ events. */
}
#endif
@@ -409,11 +409,11 @@ child_follow_fork (int follow_child)
#endif
#if !defined(CHILD_INSERT_EXEC_CATCHPOINT)
-int
+void
child_insert_exec_catchpoint (int pid)
{
- /* This version of Unix doesn't support notification of exec events. */
- return 0;
+ /* This version of Unix doesn't support notification of exec
+ events. */
}
#endif