diff src/os/linux/vm/os_linux.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 33df1aeaebbf
children 957c266d8bc5
line wrap: on
line diff
--- a/src/os/linux/vm/os_linux.cpp	Tue Feb 28 17:53:07 2012 +0100
+++ b/src/os/linux/vm/os_linux.cpp	Tue Feb 28 18:00:35 2012 +0100
@@ -4486,9 +4486,9 @@
 // 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,
+os::os_exception_wrapper(java_call_t f, JavaValue* value, methodHandle* method, nmethod* nm,
                          JavaCallArguments* args, Thread* thread) {
-  f(value, method, args, thread);
+  f(value, method, nm, args, thread);
 }
 
 void os::print_statistics() {