< prev index next >

src/jdk.hotspot.agent/linux/native/libsaproc/LinuxDebuggerLocal.cpp

Print this page

        

*** 606,610 **** --- 606,622 ---- THROW_NEW_DEBUGGER_EXCEPTION_("Could not demangle", NULL); } return result; } + + /* + * Class: sun_jvm_hotspot_debugger_linux_LinuxDebuggerLocal + * Method: findLibPtrByAddress0 + * Signature: (J)J + */ + extern "C" + JNIEXPORT jlong JNICALL Java_sun_jvm_hotspot_debugger_linux_LinuxDebuggerLocal_findLibPtrByAddress0 + (JNIEnv *env, jobject this_obj, jlong pc) { + struct ps_prochandle* ph = get_proc_handle(env, this_obj); + return reinterpret_cast<jlong>(find_lib_by_address(ph, pc)); + }
< prev index next >