# HG changeset patch # User Mark Wielaard # Date 1279014370 -7200 # Node ID bcdcc12c519e06649035449f0d78ed7fbdd8414a # Parent caa873752fc9feac2f0c7db2cb857d3ec178a82e Fix hotspot tapset object_alloc size variable. Reported by William Cohen * tapset/hotspot.stp.in (object_alloc): size is arg4, not arg3. diff -r caa873752fc9 -r bcdcc12c519e ChangeLog --- a/ChangeLog Fri Jul 16 17:25:03 2010 +0100 +++ b/ChangeLog Tue Jul 13 11:46:10 2010 +0200 @@ -1,3 +1,8 @@ +2010-07-13 Mark Wielaard + + Reported by William Cohen + * tapset/hotspot.stp.in (object_alloc): size is arg4, not arg3. + 2010-07-15 Deepak Bhole * patches/openjdk/6678385.patch: New file. Backpatched from jdk7 for diff -r caa873752fc9 -r bcdcc12c519e tapset/hotspot.stp.in --- a/tapset/hotspot.stp.in Fri Jul 16 17:25:03 2010 +0100 +++ b/tapset/hotspot.stp.in Tue Jul 13 11:46:10 2010 +0200 @@ -120,7 +120,7 @@ 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); }