comparison src/os/solaris/vm/os_solaris.cpp @ 8151:b8f261ba79c6

Minimize diff to plain HotSpot version.
author Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
date Thu, 07 Mar 2013 21:00:29 +0100
parents 5fc51c1ecdeb
children b9a918201d47
comparison
equal deleted inserted replaced
8150:b66f831ac5ab 8151:b8f261ba79c6
4278 } 4278 }
4279 4279
4280 4280
4281 // This does not do anything on Solaris. This is basically a hook for being 4281 // This does not do anything on Solaris. This is basically a hook for being
4282 // able to use structured exception handling (thread-local exception filters) on, e.g., Win32. 4282 // able to use structured exception handling (thread-local exception filters) on, e.g., Win32.
4283 void os::os_exception_wrapper(java_call_t f, JavaValue* value, methodHandle* method, nmethod* nm, JavaCallArguments* args, Thread* thread) { 4283 void os::os_exception_wrapper(java_call_t f, JavaValue* value, methodHandle* method, JavaCallArguments* args, Thread* thread) {
4284 f(value, method, nm, args, thread); 4284 f(value, method, args, thread);
4285 } 4285 }
4286 4286
4287 // This routine may be used by user applications as a "hook" to catch signals. 4287 // This routine may be used by user applications as a "hook" to catch signals.
4288 // The user-defined signal handler must pass unrecognized signals to this 4288 // The user-defined signal handler must pass unrecognized signals to this
4289 // routine, and if it returns true (non-zero), then the signal handler must 4289 // routine, and if it returns true (non-zero), then the signal handler must