diff options
author | Kevin Buettner <kevinb@redhat.com> | 2000-07-30 01:48:28 +0000 |
---|---|---|
committer | Kevin Buettner <kevinb@redhat.com> | 2000-07-30 01:48:28 +0000 |
commit | fba45db2faf619e71856ee38ec63949c0ef6903e (patch) | |
tree | 107efc21d2b12f54d84b59e75251449e3d5fd096 /gdb/maint.c | |
parent | 29e6d33b03a5e39540d17bc8235573b1dac13341 (diff) | |
download | gdb-fba45db2faf619e71856ee38ec63949c0ef6903e.zip gdb-fba45db2faf619e71856ee38ec63949c0ef6903e.tar.gz gdb-fba45db2faf619e71856ee38ec63949c0ef6903e.tar.bz2 |
Protoization.
Diffstat (limited to 'gdb/maint.c')
-rw-r--r-- | gdb/maint.c | 47 |
1 files changed, 12 insertions, 35 deletions
diff --git a/gdb/maint.c b/gdb/maint.c index 44dcba8..c2fc9e1 100644 --- a/gdb/maint.c +++ b/gdb/maint.c @@ -82,9 +82,7 @@ int watchdog = 0; */ static void -maintenance_command (args, from_tty) - char *args; - int from_tty; +maintenance_command (char *args, int from_tty) { printf_unfiltered ("\"maintenance\" must be followed by the name of a maintenance command.\n"); help_list (maintenancelist, "maintenance ", -1, gdb_stdout); @@ -93,9 +91,7 @@ maintenance_command (args, from_tty) #ifndef _WIN32 /* ARGSUSED */ static void -maintenance_dump_me (args, from_tty) - char *args; - int from_tty; +maintenance_dump_me (char *args, int from_tty) { if (query ("Should GDB dump core? ")) { @@ -131,9 +127,7 @@ maintenance_internal_error (char *args, int from_tty) demangle and print what it points to, etc. (FIXME) */ static void -maintenance_demangle (args, from_tty) - char *args; - int from_tty; +maintenance_demangle (char *args, int from_tty) { char *demangled; @@ -157,9 +151,7 @@ maintenance_demangle (args, from_tty) } static void -maintenance_time_display (args, from_tty) - char *args; - int from_tty; +maintenance_time_display (char *args, int from_tty) { extern int display_time; @@ -170,9 +162,7 @@ maintenance_time_display (args, from_tty) } static void -maintenance_space_display (args, from_tty) - char *args; - int from_tty; +maintenance_space_display (char *args, int from_tty) { extern int display_space; @@ -188,19 +178,14 @@ maintenance_space_display (args, from_tty) /* ARGSUSED */ static void -maintenance_info_command (arg, from_tty) - char *arg; - int from_tty; +maintenance_info_command (char *arg, int from_tty) { printf_unfiltered ("\"maintenance info\" must be followed by the name of an info command.\n"); help_list (maintenanceinfolist, "maintenance info ", -1, gdb_stdout); } static void -print_section_table (abfd, asect, ignore) - bfd *abfd; - asection *asect; - PTR ignore; +print_section_table (bfd *abfd, asection *asect, PTR ignore) { flagword flags; @@ -250,9 +235,7 @@ print_section_table (abfd, asect, ignore) /* ARGSUSED */ static void -maintenance_info_sections (arg, from_tty) - char *arg; - int from_tty; +maintenance_info_sections (char *arg, int from_tty) { if (exec_bfd) { @@ -275,9 +258,7 @@ maintenance_info_sections (arg, from_tty) /* ARGSUSED */ void -maintenance_print_statistics (args, from_tty) - char *args; - int from_tty; +maintenance_print_statistics (char *args, int from_tty) { print_objfile_statistics (); print_symbol_bcache_statistics (); @@ -304,9 +285,7 @@ maintenance_print_architecture (char *args, int from_tty) /* ARGSUSED */ static void -maintenance_print_command (arg, from_tty) - char *arg; - int from_tty; +maintenance_print_command (char *arg, int from_tty) { printf_unfiltered ("\"maintenance print\" must be followed by the name of a print command.\n"); help_list (maintenanceprintlist, "maintenance print ", -1, gdb_stdout); @@ -319,9 +298,7 @@ maintenance_print_command (arg, from_tty) */ static void -maintenance_translate_address (arg, from_tty) - char *arg; - int from_tty; +maintenance_translate_address (char *arg, int from_tty) { CORE_ADDR address; asection *sect; @@ -494,7 +471,7 @@ maintenance_do_deprecate (char *text, int deprecate) void -_initialize_maint_cmds () +_initialize_maint_cmds (void) { add_prefix_cmd ("maintenance", class_maintenance, maintenance_command, "Commands for use by GDB maintainers.\n\ |