diff options
author | Yao Qi <yao@codesourcery.com> | 2012-04-24 13:20:16 +0000 |
---|---|---|
committer | Yao Qi <yao@codesourcery.com> | 2012-04-24 13:20:16 +0000 |
commit | c326b90eb92a34af3227efef385f50920dd75624 (patch) | |
tree | 856c8b0aebc5f45a4c4370ca55c5f22ce9b602d1 /gdb/breakpoint.h | |
parent | dbaa2011452c7ce7ca612c6298964452dce179eb (diff) | |
download | gdb-c326b90eb92a34af3227efef385f50920dd75624.zip gdb-c326b90eb92a34af3227efef385f50920dd75624.tar.gz gdb-c326b90eb92a34af3227efef385f50920dd75624.tar.bz2 |
gdb/
* breakpoint.c (ep_is_catchpoint): Renamed to ...
(is_catchpoint): ... it.
(print_one_breakpoint_location): Caller update.
* breakpoint.h: Update declaration.
Diffstat (limited to 'gdb/breakpoint.h')
-rw-r--r-- | gdb/breakpoint.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/breakpoint.h b/gdb/breakpoint.h index e0eeeaa..e676659 100644 --- a/gdb/breakpoint.h +++ b/gdb/breakpoint.h @@ -1365,7 +1365,7 @@ extern void remove_thread_event_breakpoints (void); extern void disable_breakpoints_in_shlibs (void); /* This function returns TRUE if ep is a catchpoint. */ -extern int ep_is_catchpoint (struct breakpoint *); +extern int is_catchpoint (struct breakpoint *); /* Enable breakpoints and delete when hit. Called with ARG == NULL deletes all breakpoints. */ |