summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Johnston <jjohnstn@redhat.com>2002-10-03 22:30:01 +0000
committerJeff Johnston <jjohnstn@redhat.com>2002-10-03 22:30:01 +0000
commit62137f846ad804c386aaa9340ac8cf15c05a3df0 (patch)
tree926926525f8c5e6168cdca42839323ff0496e99a
parent4e620756895e741683d5dfb771a443a73df0d5b5 (diff)
downloadgdb-62137f846ad804c386aaa9340ac8cf15c05a3df0.tar.gz
2002-10-03 Jeff Johnston <jjohnstn@redhat.com>
* gdbint.texinfo (Item Output Functions): Add new ui_out_field_fmt_int interface definition.
-rw-r--r--gdb/doc/ChangeLog5
-rw-r--r--gdb/doc/gdbint.texinfo9
2 files changed, 13 insertions, 1 deletions
diff --git a/gdb/doc/ChangeLog b/gdb/doc/ChangeLog
index c02bd0937f5..749f1811fa7 100644
--- a/gdb/doc/ChangeLog
+++ b/gdb/doc/ChangeLog
@@ -1,3 +1,8 @@
+2002-10-03 Jeff Johnston <jjohnstn@redhat.com>
+
+ * gdbint.texinfo (Item Output Functions): Add new ui_out_field_fmt_int
+ interface definition.
+
2002-10-03 Marko Mlinar <markom@opencores.org>
* gdb.texinfo (Target Commands): Add or1k target specific
diff --git a/gdb/doc/gdbint.texinfo b/gdb/doc/gdbint.texinfo
index 6f4f96925ef..d9b6a7b484b 100644
--- a/gdb/doc/gdbint.texinfo
+++ b/gdb/doc/gdbint.texinfo
@@ -41,7 +41,7 @@ Software Foundation raise funds for GNU development.''
@page
@tex
\def\$#1${{#1}} % Kluge: collect RCS revision info without $...$
-\xdef\manvers{\$Revision: 1.102 $} % For use in headers, footers too
+\xdef\manvers{\$Revision: 1.103 $} % For use in headers, footers too
{\parskip=0pt
\hfill Cygnus Solutions\par
\hfill \manvers\par
@@ -1011,6 +1011,13 @@ This function outputs a value of an @code{int} variable. It uses the
the name of the field.
@end deftypefun
+@deftypefun void ui_out_field_fmt_int (struct ui_out *@var{uiout}, int @var{width}, enum ui_align @var{alignment}, const char *@var{fldname}, int @var{value})
+This function outputs a value of an @code{int} variable. It differs from
+@code{ui_out_field_int} in that the caller specifies the desired @var{width} and @var{alignment} of the output.
+@var{fldname} specifies
+the name of the field.
+@end deftypefun
+
@deftypefun void ui_out_field_core_addr (struct ui_out *@var{uiout}, const char *@var{fldname}, CORE_ADDR @var{address})
This function outputs an address.
@end deftypefun