comparison 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
comparison
equal deleted inserted replaced
4992:f86ddbd42a7b 4993:897b7d18bebc
4314 } 4314 }
4315 4315
4316 4316
4317 // This does not do anything on Solaris. This is basically a hook for being 4317 // This does not do anything on Solaris. This is basically a hook for being
4318 // able to use structured exception handling (thread-local exception filters) on, e.g., Win32. 4318 // able to use structured exception handling (thread-local exception filters) on, e.g., Win32.
4319 void os::os_exception_wrapper(java_call_t f, JavaValue* value, methodHandle* method, JavaCallArguments* args, Thread* thread) { 4319 void os::os_exception_wrapper(java_call_t f, JavaValue* value, methodHandle* method, nmethod* nm, JavaCallArguments* args, Thread* thread) {
4320 f(value, method, args, thread); 4320 f(value, method, nm, args, thread);
4321 } 4321 }
4322 4322
4323 // This routine may be used by user applications as a "hook" to catch signals. 4323 // This routine may be used by user applications as a "hook" to catch signals.
4324 // The user-defined signal handler must pass unrecognized signals to this 4324 // The user-defined signal handler must pass unrecognized signals to this
4325 // routine, and if it returns true (non-zero), then the signal handler must 4325 // routine, and if it returns true (non-zero), then the signal handler must