Mono: Use exit(status) instead of abort() in exception hook

This commit is contained in:
Ignacio Etcheverry
2019-04-18 13:58:55 +02:00
parent d1f98ff51b
commit 8759c0e31a
3 changed files with 6 additions and 7 deletions

View File

@ -632,11 +632,6 @@ void debug_send_unhandled_exception_error(MonoException *p_exc) {
}
void debug_unhandled_exception(MonoException *p_exc) {
#ifdef DEBUG_ENABLED
GDMonoUtils::debug_send_unhandled_exception_error(p_exc);
if (ScriptDebugger::get_singleton())
ScriptDebugger::get_singleton()->idle_poll();
#endif
GDMonoInternals::unhandled_exception(p_exc); // prints the exception as well
GD_UNREACHABLE();
}