mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2025-05-27 05:04:10 -04:00
ams: save 0x11000 of memory in spl via minor tweaks
This commit is contained in:
parent
b8072b1398
commit
d2f81d2ca2
2 changed files with 8 additions and 3 deletions
|
@ -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();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue