Fix -Wmissing-prototypes build warnings on Darwin.
gdb/ 2012-03-13 Josh Matthews <josh@joshmatthews.net> * darwin-nat-info.c (_initialize_darwin_info_commands): Add prototype. (darwin_debug_port_info): Make static. * darwin-nat.c (_initialize_darwin_inferior): Add prototype. * machoread.c (_initialize_machoread): Add prototype. * i386-darwin-nat.c (i386_darwin_dr_set, i386_darwin_dr_get) (i386_darwin_set_control, i386_darwin_get_control) i386_darwin_dr_set_addr, i386_darwin_get_addr) i386_darwin_get_status, i386_darwin_get_control): Comment out with HW_WATCHPOINT_NOT_YET_ENABLED macro.
This commit is contained in:
parent
ccbb4f28f0
commit
c381a3f69a
5 changed files with 25 additions and 2 deletions
|
@ -1,3 +1,16 @@
|
|||
2012-03-13 Josh Matthews <josh@joshmatthews.net>
|
||||
|
||||
* darwin-nat-info.c (_initialize_darwin_info_commands): Add
|
||||
prototype.
|
||||
(darwin_debug_port_info): Make static.
|
||||
* darwin-nat.c (_initialize_darwin_inferior): Add prototype.
|
||||
* machoread.c (_initialize_machoread): Add prototype.
|
||||
* i386-darwin-nat.c (i386_darwin_dr_set, i386_darwin_dr_get)
|
||||
(i386_darwin_set_control, i386_darwin_get_control)
|
||||
i386_darwin_dr_set_addr, i386_darwin_get_addr)
|
||||
i386_darwin_get_status, i386_darwin_get_control):
|
||||
Comment out with HW_WATCHPOINT_NOT_YET_ENABLED macro.
|
||||
|
||||
2012-03-13 Joel Brobecker <brobecker@adacore.com>
|
||||
|
||||
* ax-gdb.c (gen_usual_unary): Remove special handling of
|
||||
|
|
|
@ -301,7 +301,7 @@ info_mach_ports_command (char *args, int from_tty)
|
|||
}
|
||||
|
||||
|
||||
void
|
||||
static void
|
||||
darwin_debug_port_info (task_t task, mach_port_t port)
|
||||
{
|
||||
kern_return_t kret;
|
||||
|
@ -843,6 +843,9 @@ info_mach_exceptions_command (char *args, int from_tty)
|
|||
}
|
||||
}
|
||||
|
||||
/* -Wmissing-prototypes */
|
||||
extern initialize_file_ftype _initialize_darwin_info_commands;
|
||||
|
||||
void
|
||||
_initialize_darwin_info_commands (void)
|
||||
{
|
||||
|
|
|
@ -2015,6 +2015,9 @@ darwin_supports_multi_process (void)
|
|||
return 1;
|
||||
}
|
||||
|
||||
/* -Wmissing-prototypes */
|
||||
extern initialize_file_ftype _initialize_darwin_inferior;
|
||||
|
||||
void
|
||||
_initialize_darwin_inferior (void)
|
||||
{
|
||||
|
|
|
@ -260,7 +260,7 @@ i386_darwin_store_inferior_registers (struct target_ops *ops,
|
|||
}
|
||||
}
|
||||
|
||||
|
||||
#ifdef HW_WATCHPOINT_NOT_YET_ENABLED
|
||||
/* Support for debug registers, boosted mostly from i386-linux-nat.c. */
|
||||
|
||||
static void
|
||||
|
@ -410,6 +410,7 @@ i386_darwin_dr_get_control (void)
|
|||
{
|
||||
return i386_darwin_dr_get (DR_CONTROL);
|
||||
}
|
||||
#endif
|
||||
|
||||
void
|
||||
darwin_check_osabi (darwin_inferior *inf, thread_t thread)
|
||||
|
|
|
@ -1035,6 +1035,9 @@ static const struct sym_fns macho_sym_fns = {
|
|||
&psym_functions
|
||||
};
|
||||
|
||||
/* -Wmissing-prototypes */
|
||||
extern initialize_file_ftype _initialize_machoread;
|
||||
|
||||
void
|
||||
_initialize_machoread ()
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue