mirror of
https://github.com/Atmosphere-NX/Atmosphere
synced 2024-11-15 09:36:35 +00:00
boot: update for new sf-semantics
This commit is contained in:
parent
2696240566
commit
57c197ec1c
2 changed files with 17 additions and 2 deletions
|
@ -41,8 +41,11 @@
|
||||||
#include <vapours/util/util_overlap.hpp>
|
#include <vapours/util/util_overlap.hpp>
|
||||||
#include <vapours/util/util_string_util.hpp>
|
#include <vapours/util/util_string_util.hpp>
|
||||||
#include <vapours/util/util_string_view.hpp>
|
#include <vapours/util/util_string_view.hpp>
|
||||||
#include <vapours/util/util_mutex_utils.hpp>
|
|
||||||
#include <vapours/util/util_variadic.hpp>
|
#include <vapours/util/util_variadic.hpp>
|
||||||
#include <vapours/util/util_character_encoding.hpp>
|
#include <vapours/util/util_character_encoding.hpp>
|
||||||
#include <vapours/util/util_format_string.hpp>
|
#include <vapours/util/util_format_string.hpp>
|
||||||
#include <vapours/util/util_range.hpp>
|
#include <vapours/util/util_range.hpp>
|
||||||
|
|
||||||
|
#ifdef ATMOSPHERE_IS_STRATOSPHERE
|
||||||
|
#include <vapours/util/util_mutex_utils.hpp>
|
||||||
|
#endif
|
||||||
|
|
|
@ -36,7 +36,7 @@ extern "C" {
|
||||||
u32 __nx_fs_num_sessions = 1;
|
u32 __nx_fs_num_sessions = 1;
|
||||||
|
|
||||||
/* TODO: Evaluate to what extent this can be reduced further. */
|
/* TODO: Evaluate to what extent this can be reduced further. */
|
||||||
#define INNER_HEAP_SIZE 0x1000
|
#define INNER_HEAP_SIZE 0x0
|
||||||
size_t nx_inner_heap_size = INNER_HEAP_SIZE;
|
size_t nx_inner_heap_size = INNER_HEAP_SIZE;
|
||||||
char nx_inner_heap[INNER_HEAP_SIZE];
|
char nx_inner_heap[INNER_HEAP_SIZE];
|
||||||
|
|
||||||
|
@ -145,6 +145,18 @@ void __appExit(void) {
|
||||||
fsExit();
|
fsExit();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
namespace ams {
|
||||||
|
|
||||||
|
void *Malloc(size_t size) {
|
||||||
|
AMS_ABORT("ams::Malloc was called");
|
||||||
|
}
|
||||||
|
|
||||||
|
void Free(void *ptr) {
|
||||||
|
AMS_ABORT("ams::Free was called");
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
void *operator new(size_t size) {
|
void *operator new(size_t size) {
|
||||||
return Allocate(size);
|
return Allocate(size);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue