diff src/os/solaris/vm/os_solaris.cpp @ 4993:897b7d18bebc

added RiCompiledMethod.execute and the required VM infrastructure
author Lukas Stadler <lukas.stadler@jku.at>
date Tue, 28 Feb 2012 18:00:35 +0100
parents 869be5c8882e
children 957c266d8bc5
line wrap: on
line diff
--- a/src/os/solaris/vm/os_solaris.cpp	Tue Feb 28 17:53:07 2012 +0100
+++ b/src/os/solaris/vm/os_solaris.cpp	Tue Feb 28 18:00:35 2012 +0100
@@ -4316,8 +4316,8 @@
 
 // This does not do anything on Solaris. This is basically a hook for being
 // able to use structured exception handling (thread-local exception filters) on, e.g., Win32.
-void os::os_exception_wrapper(java_call_t f, JavaValue* value, methodHandle* method, JavaCallArguments* args, Thread* thread) {
-  f(value, method, args, thread);
+void os::os_exception_wrapper(java_call_t f, JavaValue* value, methodHandle* method, nmethod* nm, JavaCallArguments* args, Thread* thread) {
+  f(value, method, nm, args, thread);
 }
 
 // This routine may be used by user applications as a "hook" to catch signals.