* ui-out.h: Remove #if 0 declarations.
* ui-out.c: Remove #if 0 functions.
This commit is contained in:
parent
83b18be2fd
commit
a6feecf744
3 changed files with 5 additions and 79 deletions
|
@ -1,3 +1,8 @@
|
|||
2012-06-11 Stan Shebs <stan@codesourcery.com>
|
||||
|
||||
* ui-out.h: Remove #if 0 declarations.
|
||||
* ui-out.c: Remove #if 0 functions.
|
||||
|
||||
2012-06-11 Pedro Alves <palves@redhat.com>
|
||||
|
||||
* ser-base.c (run_async_handler_and_reschedule): New.
|
||||
|
|
55
gdb/ui-out.c
55
gdb/ui-out.c
|
@ -644,61 +644,6 @@ ui_out_get_verblvl (struct ui_out *uiout)
|
|||
return 0;
|
||||
}
|
||||
|
||||
#if 0
|
||||
void
|
||||
ui_out_result_begin (struct ui_out *uiout, char *class)
|
||||
{
|
||||
}
|
||||
|
||||
void
|
||||
ui_out_result_end (struct ui_out *uiout)
|
||||
{
|
||||
}
|
||||
|
||||
void
|
||||
ui_out_info_begin (struct ui_out *uiout, char *class)
|
||||
{
|
||||
}
|
||||
|
||||
void
|
||||
ui_out_info_end (struct ui_out *uiout)
|
||||
{
|
||||
}
|
||||
|
||||
void
|
||||
ui_out_notify_begin (struct ui_out *uiout, char *class)
|
||||
{
|
||||
}
|
||||
|
||||
void
|
||||
ui_out_notify_end (struct ui_out *uiout)
|
||||
{
|
||||
}
|
||||
|
||||
void
|
||||
ui_out_error_begin (struct ui_out *uiout, char *class)
|
||||
{
|
||||
}
|
||||
|
||||
void
|
||||
ui_out_error_end (struct ui_out *uiout)
|
||||
{
|
||||
}
|
||||
#endif
|
||||
|
||||
#if 0
|
||||
void
|
||||
gdb_error (ui_out * uiout, int severity, char *format,...)
|
||||
{
|
||||
va_list args;
|
||||
}
|
||||
|
||||
void
|
||||
gdb_query (struct ui_out *uiout, int qflags, char *qprompt)
|
||||
{
|
||||
}
|
||||
#endif
|
||||
|
||||
int
|
||||
ui_out_is_mi_like_p (struct ui_out *uiout)
|
||||
{
|
||||
|
|
24
gdb/ui-out.h
24
gdb/ui-out.h
|
@ -142,30 +142,6 @@ extern int ui_out_test_flags (struct ui_out *uiout, int mask);
|
|||
extern int ui_out_query_field (struct ui_out *uiout, int colno,
|
||||
int *width, int *alignment, char **col_name);
|
||||
|
||||
#if 0
|
||||
extern void ui_out_result_begin (struct ui_out *uiout, char *class);
|
||||
|
||||
extern void ui_out_result_end (struct ui_out *uiout);
|
||||
|
||||
extern void ui_out_info_begin (struct ui_out *uiout, char *class);
|
||||
|
||||
extern void ui_out_info_end (struct ui_out *uiout);
|
||||
|
||||
extern void ui_out_notify_begin (struct ui_out *uiout, char *class);
|
||||
|
||||
extern void ui_out_notify_end (struct ui_out *uiout);
|
||||
|
||||
extern void ui_out_error_begin (struct ui_out *uiout, char *class);
|
||||
|
||||
extern void ui_out_error_end (struct ui_out *uiout);
|
||||
#endif
|
||||
|
||||
#if 0
|
||||
extern void gdb_error (struct ui_out *uiout, int severity, char *format, ...);
|
||||
|
||||
extern void gdb_query (struct ui_out *uiout, int qflags, char *qprompt);
|
||||
#endif
|
||||
|
||||
/* HACK: Code in GDB is currently checking to see the type of ui_out
|
||||
builder when determining which output to produce. This function is
|
||||
a hack to encapsulate that test. Once GDB manages to separate the
|
||||
|
|
Loading…
Add table
Reference in a new issue