* gdbtk-cmds.c (gdb_listfuncs): Strip out global constructors
and destructors from the function list.
+Tue Aug 18 15:42:40 1998 Martin M. Hunt <hunt@cygnus.com>
+
+ * gdbtk-cmds.c (gdb_listfuncs): Strip out global constructors
+ and destructors from the function list.
+
start-sanitize-ide
Thu Aug 13 15:15:59 1998 Drew Moseley <dmoseley@cygnus.com>
char *name = cplus_demangle (SYMBOL_NAME(sym), 0);
if (name)
{
- funcVals[0] = Tcl_NewStringObj(name, -1);
- funcVals[1] = mangled;
+ /* strip out "global constructors" and "global destructors" */
+ /* because we aren't interested in them. */
+ if (strncmp (name, "global ", 7))
+ {
+ funcVals[0] = Tcl_NewStringObj(name, -1);
+ funcVals[1] = mangled;
+ }
}
else
{