strat: update for revised libnx weak alloc funcs

This commit is contained in:
Michael Scire
2021-01-22 03:52:10 -08:00
parent f8f987aa8d
commit 3389aaefc3
14 changed files with 178 additions and 55 deletions

View File

@@ -34,8 +34,9 @@ extern "C" {
u64 __nx_exception_stack_size = sizeof(__nx_exception_stack);
void __libnx_exception_handler(ThreadExceptionDump *ctx);
void *__libnx_thread_alloc(size_t size);
void __libnx_thread_free(void *mem);
void *__libnx_alloc(size_t size);
void *__libnx_aligned_alloc(size_t alignment, size_t size);
void __libnx_free(void *mem);
}
namespace ams {
@@ -124,12 +125,16 @@ namespace ams {
}
void *__libnx_thread_alloc(size_t size) {
AMS_ABORT("__libnx_thread_alloc was called");
void *__libnx_alloc(size_t size) {
AMS_ABORT("__libnx_alloc was called");
}
void __libnx_thread_free(void *mem) {
AMS_ABORT("__libnx_thread_free was called");
void *__libnx_aligned_alloc(size_t alignment, size_t size) {
AMS_ABORT("__libnx_aligned_alloc was called");
}
void __libnx_free(void *mem) {
AMS_ABORT("__libnx_free was called");
}
void *operator new(size_t size) {