/hg/icedtea6: Shark calling static jni methods jclass argument fix.
xranby at icedtea.classpath.org
xranby at icedtea.classpath.org
Thu Apr 22 02:20:51 PDT 2010
changeset 67bc1a7196b8 in /hg/icedtea6
details: http://icedtea.classpath.org/hg/icedtea6?cmd=changeset;node=67bc1a7196b8
author: Xerxes R?nby <xerxes at zafena.se>
date: Thu Apr 22 11:16:37 2010 +0200
Shark calling static jni methods jclass argument fix.
2010-04-22 Xerxes R?nby <xerxes at zafena.se>
* ports/hotspot/src/share/vm/shark/sharkNativeWrapper.cpp
(SharkNativeWrapper::initialize): Shark calling static jni
methods jclass argument fix.
diffstat:
2 files changed, 8 insertions(+), 1 deletion(-)
ChangeLog | 6 ++++++
ports/hotspot/src/share/vm/shark/sharkNativeWrapper.cpp | 3 ++-
diffs (26 lines):
diff -r bedc8f68d746 -r 67bc1a7196b8 ChangeLog
--- a/ChangeLog Wed Apr 21 11:30:49 2010 -0400
+++ b/ChangeLog Thu Apr 22 11:16:37 2010 +0200
@@ -1,3 +1,9 @@ 2010-04-21 Deepak Bhole <dbhole at redhat.
+2010-04-22 Xerxes RÃ¥nby <xerxes at zafena.se>
+
+ * ports/hotspot/src/share/vm/shark/sharkNativeWrapper.cpp
+ (SharkNativeWrapper::initialize): Shark calling static jni
+ methods jclass argument fix.
+
2010-04-21 Deepak Bhole <dbhole at redhat.com>
* plugin/icedteanp/IcedTeaNPPlugin.cc
diff -r bedc8f68d746 -r 67bc1a7196b8 ports/hotspot/src/share/vm/shark/sharkNativeWrapper.cpp
--- a/ports/hotspot/src/share/vm/shark/sharkNativeWrapper.cpp Wed Apr 21 11:30:49 2010 -0400
+++ b/ports/hotspot/src/share/vm/shark/sharkNativeWrapper.cpp Thu Apr 22 11:16:37 2010 +0200
@@ -98,7 +98,8 @@ void SharkNativeWrapper::initialize(cons
if (is_static()) {
builder()->CreateStore(
builder()->CreateInlineOop(
- JNIHandles::make_local(target()->method_holder())),
+ JNIHandles::make_local(
+ target()->method_holder()->klass_part()->java_mirror())),
oop_tmp_slot());
param_types.push_back(box_type);
More information about the distro-pkg-dev
mailing list