changeset in /hg/icedtea6: 2008-08-08 Gary Benson <gbenson at red...
Gary Benson
gbenson at redhat.com
Fri Aug 8 09:13:52 PDT 2008
changeset a348ff2a45d1 in /hg/icedtea6
details: http://icedtea.classpath.org/hg/icedtea6?cmd=changeset;node=a348ff2a45d1
description:
2008-08-08 Gary Benson <gbenson at redhat.com>
* patches/icedtea-zero.patch: Include the calling thread's
stack in crash dumps.
diffstat:
2 files changed, 20 insertions(+)
ChangeLog | 5 +++++
patches/icedtea-zero.patch | 15 +++++++++++++++
diffs (34 lines):
diff -r d7f54e3a7a80 -r a348ff2a45d1 ChangeLog
--- a/ChangeLog Fri Aug 08 12:11:15 2008 -0400
+++ b/ChangeLog Fri Aug 08 12:13:41 2008 -0400
@@ -1,3 +1,8 @@ 2008-08-08 Gary Benson <gbenson at redhat
+2008-08-08 Gary Benson <gbenson at redhat.com>
+
+ * patches/icedtea-zero.patch: Include the calling thread's
+ stack in crash dumps.
+
2008-08-08 Gary Benson <gbenson at redhat.com>
* patches/icedtea-signed-types.patch: Signedness fix.
diff -r d7f54e3a7a80 -r a348ff2a45d1 patches/icedtea-zero.patch
--- a/patches/icedtea-zero.patch Fri Aug 08 12:11:15 2008 -0400
+++ b/patches/icedtea-zero.patch Fri Aug 08 12:13:41 2008 -0400
@@ -196,3 +196,18 @@
}
STEP(140, "(printing VM operation)" )
+@@ -472,6 +484,14 @@ void VMError::report(outputStream* st) {
+ op->print_on_error(st);
+ st->cr();
+ st->cr();
++#ifdef ZERO
++ if (op->calling_thread()->is_Java_thread()) {
++ st->print_cr("Calling thread's Java stack:");
++ ZeroStackPrinter(st, buf, sizeof(buf)).print(
++ (JavaThread *) op->calling_thread());
++ st->cr();
++ }
++#endif // ZERO
+ }
+ }
+
More information about the distro-pkg-dev
mailing list