/hg/icedtea6: Fix hotspot tapset object_alloc size variable.
mjw at icedtea.classpath.org
mjw at icedtea.classpath.org
Tue Jul 13 02:48:26 PDT 2010
changeset bd9b46091cd7 in /hg/icedtea6
details: http://icedtea.classpath.org/hg/icedtea6?cmd=changeset;node=bd9b46091cd7
author: Mark Wielaard <mark at klomp.org>
date: Tue Jul 13 11:46:10 2010 +0200
Fix hotspot tapset object_alloc size variable.
Reported by William Cohen <wcohen at redhat.com>
* tapset/hotspot.stp.in (object_alloc): size is arg4, not arg3.
diffstat:
2 files changed, 6 insertions(+), 1 deletion(-)
ChangeLog | 5 +++++
tapset/hotspot.stp.in | 2 +-
diffs (24 lines):
diff -r 83395fabed02 -r bd9b46091cd7 ChangeLog
--- a/ChangeLog Mon Jul 12 18:41:55 2010 -0400
+++ b/ChangeLog Tue Jul 13 11:46:10 2010 +0200
@@ -1,3 +1,8 @@ 2010-06-14 Deepak Bhole <dbhole at redhat.
+2010-07-13 Mark Wielaard <mjw at redhat.com>
+
+ Reported by William Cohen <wcohen at redhat.com>
+ * tapset/hotspot.stp.in (object_alloc): size is arg4, not arg3.
+
2010-06-14 Deepak Bhole <dbhole at redhat.com>
* plugin/icedteanp/IcedTeaJavaRequestProcessor.cc: Use variadic macro
diff -r 83395fabed02 -r bd9b46091cd7 tapset/hotspot.stp.in
--- a/tapset/hotspot.stp.in Mon Jul 12 18:41:55 2010 -0400
+++ b/tapset/hotspot.stp.in Tue Jul 13 11:46:10 2010 +0200
@@ -120,7 +120,7 @@ probe hotspot.object_alloc =
name = "object_alloc";
thread_id = $arg1;
class = user_string_n($arg2, $arg3);
- size = $arg3;
+ size = $arg4;
probestr = sprintf("%s(thread_id=%d,class='%s',size=0x%x)",
name, thread_id, class, size);
}
More information about the distro-pkg-dev
mailing list