diff options
author | Tom Tromey <tromey@redhat.com> | 2013-04-15 18:04:53 +0000 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2013-04-15 18:04:53 +0000 |
commit | 916703c090d3d30421d6b67cfb9f2e9e711d965a (patch) | |
tree | e91004ef3883ef614384ff9c92167ef6ae875a0f /gdb/breakpoint.h | |
parent | 6e72ca205c018b9906fa2047ffb1be7f546e0643 (diff) | |
download | gdb-916703c090d3d30421d6b67cfb9f2e9e711d965a.zip gdb-916703c090d3d30421d6b67cfb9f2e9e711d965a.tar.gz gdb-916703c090d3d30421d6b67cfb9f2e9e711d965a.tar.bz2 |
* Makefile.in (SFILES): Add break-catch-throw.c
(COMMON_OBS): Add break-catch-throw.o.
* break-catch-throw.c: New file.
* breakpoint.c: Move exception-catching code to new file.
(ep_parse_optional_if_clause): No longer static.
* breakpoint.h (ep_parse_optional_if_clause): Declare.
Diffstat (limited to 'gdb/breakpoint.h')
-rw-r--r-- | gdb/breakpoint.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gdb/breakpoint.h b/gdb/breakpoint.h index d740625..7df1122 100644 --- a/gdb/breakpoint.h +++ b/gdb/breakpoint.h @@ -1557,4 +1557,6 @@ extern void handle_solib_event (void); extern void breakpoint_free_objfile (struct objfile *objfile); +extern char *ep_parse_optional_if_clause (char **arg); + #endif /* !defined (BREAKPOINT_H) */ |