hocclk: reduce memory usage for real this time

This commit is contained in:
souldbminersmwc
2026-04-11 18:25:30 -04:00
parent 6369382de1
commit b7440a38a5
2 changed files with 7 additions and 10 deletions

View File

@@ -55,20 +55,20 @@ extern "C"
NvServiceType __nx_nv_service_type = NvServiceType_Factory;
// Ty to MasaGratoR for this!
//This is done to save some space as they have no practical use in our case
void* __real___cxa_throw(void *thrown_exception, void *pvar, void (*dest)(void *));
void* __real__Unwind_Resume();
void* __real___gxx_personality_v0();
// This is done to save some space as they have no practical use in our case
__attribute__((used)) void* __real___cxa_throw(void *thrown_exception, void *pvar, void (*dest)(void *));
__attribute__((used)) void* __real__Unwind_Resume();
__attribute__((used)) void* __real___gxx_personality_v0();
void __wrap___cxa_throw(void *thrown_exception, void *pvar, void (*dest)(void *)) {
__attribute__((used)) void __wrap___cxa_throw(void *thrown_exception, void *pvar, void (*dest)(void *)) {
abort();
}
void __wrap__Unwind_Resume() {
__attribute__((used)) void __wrap__Unwind_Resume() {
return;
}
void __wrap___gxx_personality_v0() {
__attribute__((used)) void __wrap___gxx_personality_v0() {
return;
}