mirror of
https://github.com/darlinghq/darling-gdb.git
synced 2024-11-29 23:10:26 +00:00
(Variables, Symbols): Document the "<incomplete type>" message and
its reasons.
This commit is contained in:
parent
a94ab19323
commit
ab1adacd8a
@ -3,6 +3,8 @@
|
||||
* gdb.texinfo (File Options): Don't document --mapped, it's gone
|
||||
since 19-Jan-2004.
|
||||
(Files): Likewise.
|
||||
(Variables, Symbols): Document the "<incomplete type>" message and
|
||||
its reasons.
|
||||
|
||||
2005-08-01 Fred Fish <fnf@specifix.com>
|
||||
|
||||
|
@ -5179,6 +5179,11 @@ for Debugging Your Program or @sc{gnu} CC, gcc.info, Using @sc{gnu} CC}.
|
||||
@xref{C, , Debugging C++}, for more info about debug info formats
|
||||
that are best suited to C@t{++} programs.
|
||||
|
||||
If you ask to print an object whose contents are unknown to
|
||||
@value{GDBN}, e.g., because its data type is not completely specified
|
||||
by the debug information, @value{GDBN} will say @samp{<incomplete
|
||||
type>}. @xref{Symbols, incomplete type}, for more about this.
|
||||
|
||||
@node Arrays
|
||||
@section Artificial arrays
|
||||
|
||||
@ -10008,6 +10013,30 @@ type = struct complex @{
|
||||
As with @code{whatis}, using @code{ptype} without an argument refers to
|
||||
the type of @code{$}, the last value in the value history.
|
||||
|
||||
@cindex incomplete type
|
||||
Sometimes, programs use opaque data types or incomplete specifications
|
||||
of complex data structure. If the debug information included in the
|
||||
program does not allow @value{GDBN} to display a full declaration of
|
||||
the data type, it will say @samp{<incomplete type>}. For example,
|
||||
given these declarations:
|
||||
|
||||
@smallexample
|
||||
struct foo;
|
||||
struct foo *fooptr;
|
||||
@end smallexample
|
||||
|
||||
@noindent
|
||||
but no definition for @code{struct foo} itself, @value{GDBN} will say:
|
||||
|
||||
@smallexample
|
||||
(gdb) ptype foo
|
||||
$1 = <incomplete type>
|
||||
@end smallexample
|
||||
|
||||
@noindent
|
||||
``Incomplete type'' is C terminology for data types that are not
|
||||
completely specified.
|
||||
|
||||
@kindex info types
|
||||
@item info types @var{regexp}
|
||||
@itemx info types
|
||||
|
Loading…
Reference in New Issue
Block a user