/hg/release/icedtea6-1.7: Fix hotspot tapset object_alloc size v...

andrew at icedtea.classpath.org andrew at icedtea.classpath.org
Thu Jul 15 09:37:39 PDT 2010


changeset 883958fa4dd9 in /hg/release/icedtea6-1.7
details: http://icedtea.classpath.org/hg/release/icedtea6-1.7?cmd=changeset;node=883958fa4dd9
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 064bdf509833 -r 883958fa4dd9 ChangeLog
--- a/ChangeLog	Wed Jul 14 17:42:26 2010 -0400
+++ b/ChangeLog	Tue Jul 13 11:46:10 2010 +0200
@@ -1,3 +1,8 @@ 2010-07-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-07-14  Deepak Bhole <dbhole at redhat.com>
 
 	* plugin/icedteanp/java/sun/applet/PluginMessageConsumer.java: Add a new
diff -r 064bdf509833 -r 883958fa4dd9 tapset/hotspot.stp.in
--- a/tapset/hotspot.stp.in	Wed Jul 14 17:42:26 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