summaryrefslogtreecommitdiff
path: root/gdb/gdb-events.h
diff options
context:
space:
mode:
authorMichael Snyder <msnyder@specifix.com>2005-01-14 00:16:53 +0000
committerMichael Snyder <msnyder@specifix.com>2005-01-14 00:16:53 +0000
commit0557c0ceeaba62c950e54556f22cb1fca6ba0543 (patch)
tree287f85f4e66a52bcdcfc1b9d3aee7582ad1e4634 /gdb/gdb-events.h
parent348c60a6d98a77aec9fc4242452d1d70cd6dd40c (diff)
downloadgdb-0557c0ceeaba62c950e54556f22cb1fca6ba0543.tar.gz
2005-01-13 Michael Snyder <msnyder@redhat.com>
* gdb-events[.c, .h, .sh]: Whitespace tweaks.
Diffstat (limited to 'gdb/gdb-events.h')
-rw-r--r--gdb/gdb-events.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/gdb/gdb-events.h b/gdb/gdb-events.h
index 386250b5450..5f9c5273db1 100644
--- a/gdb/gdb-events.h
+++ b/gdb/gdb-events.h
@@ -44,9 +44,9 @@
-/* Type definition of all hook functions.
- Recommended pratice is to first declare each hook function using
- the below ftype and then define it. */
+/* Type definition of all hook functions. Recommended pratice is to
+ first declare each hook function using the below ftype and then
+ define it. */
typedef void (gdb_events_breakpoint_create_ftype) (int b);
typedef void (gdb_events_breakpoint_delete_ftype) (int b);
@@ -73,7 +73,7 @@ struct gdb_events
/* Interface into events functions.
Where a *_p() predicate is present, it must be called before
- calling the hook proper. */
+ calling the hook proper. */
extern void breakpoint_create_event (int b);
extern void breakpoint_delete_event (int b);
extern void breakpoint_modify_event (int b);
@@ -82,13 +82,13 @@ extern void tracepoint_delete_event (int number);
extern void tracepoint_modify_event (int number);
extern void architecture_changed_event (void);
-/* Install custom gdb-events hooks. */
+/* Install custom gdb-events hooks. */
extern struct gdb_events *deprecated_set_gdb_event_hooks (struct gdb_events *vector);
-/* Deliver any pending events. */
+/* Deliver any pending events. */
extern void gdb_events_deliver (struct gdb_events *vector);
-/* Clear event handlers */
+/* Clear event handlers. */
extern void clear_gdb_event_hooks (void);
#endif