ams: save 0x11000 of memory in spl via minor tweaks

This commit is contained in:
Michael Scire 2021-01-12 01:27:38 -08:00
parent b8072b1398
commit d2f81d2ca2
2 changed files with 8 additions and 3 deletions

View file

@ -197,10 +197,15 @@ extern "C" {
}
namespace {
constinit ams::os::Mutex g_abort_lock(true);
}
/* Custom abort handler, so that std::abort will trigger these. */
void abort() {
static ams::os::Mutex abort_lock(true);
std::scoped_lock lk(abort_lock);
std::scoped_lock lk(g_abort_lock);
ams::AbortImpl();
__builtin_unreachable();