2005-01-13 Michael Snyder <msnyder@redhat.com>
* gdb-events[.c, .h, .sh]: Whitespace tweaks.
This commit is contained in:
parent
7e171d1f5a
commit
308671566d
4 changed files with 35 additions and 33 deletions
|
@ -1,5 +1,6 @@
|
||||||
2005-01-13 Michael Snyder <msnyder@redhat.com>
|
2005-01-13 Michael Snyder <msnyder@redhat.com>
|
||||||
|
|
||||||
|
* gdb-events[.c, .h, .sh]: Whitespace tweaks.
|
||||||
* corefile.c: Whitespace tweaks.
|
* corefile.c: Whitespace tweaks.
|
||||||
* completer.c: Whitespace tweaks.
|
* completer.c: Whitespace tweaks.
|
||||||
* coff-solib.c: Whitespace tweaks.
|
* coff-solib.c: Whitespace tweaks.
|
||||||
|
|
|
@ -18,7 +18,8 @@
|
||||||
|
|
||||||
You should have received a copy of the GNU General Public License
|
You should have received a copy of the GNU General Public License
|
||||||
along with this program; if not, write to the Free Software
|
along with this program; if not, write to the Free Software
|
||||||
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
|
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
|
||||||
|
USA. */
|
||||||
|
|
||||||
/* Work in progress */
|
/* Work in progress */
|
||||||
|
|
||||||
|
@ -32,7 +33,7 @@
|
||||||
If editing this file, please also run gdb-events.sh and merge any
|
If editing this file, please also run gdb-events.sh and merge any
|
||||||
changes into that script. Conversely, when making sweeping changes
|
changes into that script. Conversely, when making sweeping changes
|
||||||
to this file, modifying gdb-events.sh and using its output may
|
to this file, modifying gdb-events.sh and using its output may
|
||||||
prove easier. */
|
prove easier. */
|
||||||
|
|
||||||
|
|
||||||
#include "defs.h"
|
#include "defs.h"
|
||||||
|
@ -338,12 +339,12 @@ When non-zero, event/notify debugging is enabled.", &setlist);
|
||||||
deprecate_cmd (deprecated_add_show_from_set (c, &showlist),
|
deprecate_cmd (deprecated_add_show_from_set (c, &showlist),
|
||||||
"show debug event");
|
"show debug event");
|
||||||
|
|
||||||
deprecated_add_show_from_set
|
deprecated_add_show_from_set (add_set_cmd ("event",
|
||||||
(add_set_cmd ("event",
|
class_maintenance,
|
||||||
class_maintenance,
|
var_zinteger,
|
||||||
var_zinteger,
|
(char *) (&gdb_events_debug),
|
||||||
(char *) (&gdb_events_debug),
|
"Set event debugging.\n\
|
||||||
"Set event debugging.\n\
|
When non-zero, event/notify debugging is enabled.",
|
||||||
When non-zero, event/notify debugging is enabled.", &setdebuglist),
|
&setdebuglist),
|
||||||
&showdebuglist);
|
&showdebuglist);
|
||||||
}
|
}
|
||||||
|
|
|
@ -44,9 +44,9 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/* Type definition of all hook functions.
|
/* Type definition of all hook functions. Recommended pratice is to
|
||||||
Recommended pratice is to first declare each hook function using
|
first declare each hook function using the below ftype and then
|
||||||
the below ftype and then define it. */
|
define it. */
|
||||||
|
|
||||||
typedef void (gdb_events_breakpoint_create_ftype) (int b);
|
typedef void (gdb_events_breakpoint_create_ftype) (int b);
|
||||||
typedef void (gdb_events_breakpoint_delete_ftype) (int b);
|
typedef void (gdb_events_breakpoint_delete_ftype) (int b);
|
||||||
|
@ -73,7 +73,7 @@ struct gdb_events
|
||||||
|
|
||||||
/* Interface into events functions.
|
/* Interface into events functions.
|
||||||
Where a *_p() predicate is present, it must be called before
|
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_create_event (int b);
|
||||||
extern void breakpoint_delete_event (int b);
|
extern void breakpoint_delete_event (int b);
|
||||||
extern void breakpoint_modify_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 tracepoint_modify_event (int number);
|
||||||
extern void architecture_changed_event (void);
|
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);
|
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);
|
extern void gdb_events_deliver (struct gdb_events *vector);
|
||||||
|
|
||||||
/* Clear event handlers */
|
/* Clear event handlers. */
|
||||||
extern void clear_gdb_event_hooks (void);
|
extern void clear_gdb_event_hooks (void);
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -19,7 +19,8 @@
|
||||||
#
|
#
|
||||||
# You should have received a copy of the GNU General Public License
|
# You should have received a copy of the GNU General Public License
|
||||||
# along with this program; if not, write to the Free Software
|
# along with this program; if not, write to the Free Software
|
||||||
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
|
||||||
|
# USA.
|
||||||
|
|
||||||
IFS=:
|
IFS=:
|
||||||
|
|
||||||
|
@ -88,7 +89,7 @@ copyright ()
|
||||||
If editing this file, please also run gdb-events.sh and merge any
|
If editing this file, please also run gdb-events.sh and merge any
|
||||||
changes into that script. Conversely, when making sweeping changes
|
changes into that script. Conversely, when making sweeping changes
|
||||||
to this file, modifying gdb-events.sh and using its output may
|
to this file, modifying gdb-events.sh and using its output may
|
||||||
prove easier. */
|
prove easier. */
|
||||||
|
|
||||||
EOF
|
EOF
|
||||||
}
|
}
|
||||||
|
@ -126,9 +127,9 @@ done
|
||||||
echo ""
|
echo ""
|
||||||
echo ""
|
echo ""
|
||||||
cat <<EOF
|
cat <<EOF
|
||||||
/* Type definition of all hook functions.
|
/* Type definition of all hook functions. Recommended pratice is to
|
||||||
Recommended pratice is to first declare each hook function using
|
first declare each hook function using the below ftype and then
|
||||||
the below ftype and then define it. */
|
define it. */
|
||||||
EOF
|
EOF
|
||||||
echo ""
|
echo ""
|
||||||
function_list | while eval read $read
|
function_list | while eval read $read
|
||||||
|
@ -157,7 +158,7 @@ echo ""
|
||||||
cat <<EOF
|
cat <<EOF
|
||||||
/* Interface into events functions.
|
/* Interface into events functions.
|
||||||
Where a *_p() predicate is present, it must be called before
|
Where a *_p() predicate is present, it must be called before
|
||||||
calling the hook proper. */
|
calling the hook proper. */
|
||||||
EOF
|
EOF
|
||||||
function_list | while eval read $read
|
function_list | while eval read $read
|
||||||
do
|
do
|
||||||
|
@ -176,13 +177,13 @@ done
|
||||||
# our set function
|
# our set function
|
||||||
cat <<EOF
|
cat <<EOF
|
||||||
|
|
||||||
/* Install custom gdb-events hooks. */
|
/* Install custom gdb-events hooks. */
|
||||||
extern struct gdb_events *deprecated_set_gdb_event_hooks (struct gdb_events *vector);
|
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);
|
extern void gdb_events_deliver (struct gdb_events *vector);
|
||||||
|
|
||||||
/* Clear event handlers */
|
/* Clear event handlers. */
|
||||||
extern void clear_gdb_event_hooks (void);
|
extern void clear_gdb_event_hooks (void);
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
|
@ -477,14 +478,13 @@ When non-zero, event/notify debugging is enabled.", &setlist);
|
||||||
deprecate_cmd (deprecated_add_show_from_set (c, &showlist),
|
deprecate_cmd (deprecated_add_show_from_set (c, &showlist),
|
||||||
"show debug event");
|
"show debug event");
|
||||||
|
|
||||||
deprecated_add_show_from_set
|
deprecated_add_show_from_set (add_set_cmd ("event",
|
||||||
(add_set_cmd ("event",
|
class_maintenance,
|
||||||
class_maintenance,
|
var_zinteger,
|
||||||
var_zinteger,
|
(char *) (&gdb_events_debug),
|
||||||
(char *) (&gdb_events_debug),
|
"Set event debugging.\n\\
|
||||||
"Set event debugging.\n\\
|
|
||||||
When non-zero, event/notify debugging is enabled.", &setdebuglist),
|
When non-zero, event/notify debugging is enabled.", &setdebuglist),
|
||||||
&showdebuglist);
|
&showdebuglist);
|
||||||
}
|
}
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue