/hg/icedtea: Fix hotspot tapset object_alloc size variable.

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


changeset 0f9a93d2866d in /hg/icedtea
details: http://icedtea.classpath.org/hg/icedtea?cmd=changeset;node=0f9a93d2866d
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 5c660ac28d6b -r 0f9a93d2866d ChangeLog
--- a/ChangeLog	Wed Jul 14 21:49:22 2010 +0100
+++ b/ChangeLog	Tue Jul 13 11:46:10 2010 +0200
@@ -1,3 +1,8 @@ 2010-07-15 Andrew John Hughes  <ahughes@
+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-15 Andrew John Hughes  <ahughes at redhat.com>
 
 	PR icedtea/521
diff -r 5c660ac28d6b -r 0f9a93d2866d tapset/hotspot.stp.in
--- a/tapset/hotspot.stp.in	Wed Jul 14 21:49:22 2010 +0100
+++ 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