Java_sun_jvm_hotspot_asm_Disassembler_load_1library should use THROW_NEW_DEBUGGER_EXCEPTION_ not THROW_NEW_DEBUGGER_EXCEPTION
THROW_NEW_DEBUGGER_EXCEPTION does not return value
THROW_NEW_DEBUGGER_EXCEPTION_ returns value and should be the one called in Java_sun_jvm_hotspot_asm_Disassembler_load_1library, which is a method that returns value.
Ie. at line 458 instead of:
THROW_NEW_DEBUGGER_EXCEPTION(error_message);
we need:
THROW_NEW_DEBUGGER_EXCEPTION_(error_message, 0L);
File hotspot/agent/src/os/bsd/MacosxDebuggerLocal.m
THROW_NEW_DEBUGGER_EXCEPTION does not return value
THROW_NEW_DEBUGGER_EXCEPTION_ returns value and should be the one called in Java_sun_jvm_hotspot_asm_Disassembler_load_1library, which is a method that returns value.
Ie. at line 458 instead of:
THROW_NEW_DEBUGGER_EXCEPTION(error_message);
we need:
THROW_NEW_DEBUGGER_EXCEPTION_(error_message, 0L);
File hotspot/agent/src/os/bsd/MacosxDebuggerLocal.m