hotspot/src/os/linux/vm/os_linux.cpp
// This does not do anything on Linux. 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) {
{- -------------------------------------------
(1) 単に引数で渡された関数を呼び出すだけ.
---------------------------------------- -}
f(value, method, args, thread);
}
This document is available under the GNU GENERAL PUBLIC LICENSE Version 2.