This is the mail archive of the
java@gcc.gnu.org
mailing list for the Java project.
Re: Freeze in GC_suspend_handler
>>>>> "Daniel" == Daniel Bonniot <Daniel.Bonniot@inria.fr> writes:
Daniel> (gdb) print field->name
Daniel> $2 = (_Jv_Utf8Const *) 0x8294e40
Daniel> Is there an easy way to print this type?
I use this gdb macro:
define putf
p (char *) ($arg0.data)
end
document putf
Print a UTF-8 value
end
Do you know where this field comes from?
Is it your application?
I think the next thing to do is to try to see why this field isn't
initialized. One way to do that would be to put a watchpoint on the
value and then see when/why it changes to 0.
Tom