* ui-out.c (ui_out_field_core_addr): Mention that the function
authorThiago Jung Bauermann <bauerman@br.ibm.com>
Mon, 4 Jul 2011 18:50:17 +0000 (18:50 +0000)
committerThiago Jung Bauermann <bauerman@br.ibm.com>
Mon, 4 Jul 2011 18:50:17 +0000 (18:50 +0000)
description is in the header file.
* ui-out.h (ui_out_field_core_addr): Document function.

gdb/ChangeLog
gdb/ui-out.c
gdb/ui-out.h

index 6dab64c..7b89a0f 100644 (file)
@@ -1,5 +1,11 @@
 2011-07-04  Thiago Jung Bauermann  <bauerman@br.ibm.com>
 
+       * ui-out.c (ui_out_field_core_addr): Mention that the function
+       description is in the header file.
+       * ui-out.h (ui_out_field_core_addr): Document function.
+
+2011-07-04  Thiago Jung Bauermann  <bauerman@br.ibm.com>
+
        * ui-out.c (ui_out_get_field_separator): Remove unused function.
        * ui-out.h (ui_out_get_field_separator): Remove prototype.
 
index b022cae..2994828 100644 (file)
@@ -486,6 +486,8 @@ ui_out_field_fmt_int (struct ui_out *uiout,
   uo_field_int (uiout, fldno, input_width, input_align, fldname, value);
 }
 
+/* Documented in ui-out.h.  */
+
 void
 ui_out_field_core_addr (struct ui_out *uiout,
                        const char *fldname,
index 71026e0..ee6d98f 100644 (file)
@@ -113,6 +113,8 @@ extern void ui_out_field_fmt_int (struct ui_out *uiout, int width,
                                  enum ui_align align, const char *fldname, 
                                  int value);
 
+/* Output a field containing an addresses.  */
+
 extern void ui_out_field_core_addr (struct ui_out *uiout, const char *fldname,
                                    struct gdbarch *gdbarch, CORE_ADDR address);