mirror of
https://github.com/Atmosphere-NX/Atmosphere
synced 2024-11-09 22:56:35 +00:00
ams.mitm: wrong stack was increased
This commit is contained in:
parent
ff828dc0bc
commit
596a0f2551
2 changed files with 2 additions and 2 deletions
|
@ -21,7 +21,7 @@ namespace ams::mitm::sysupdater {
|
|||
namespace {
|
||||
|
||||
constexpr inline int AsyncThreadCount = 1;
|
||||
constexpr inline size_t AsyncThreadStackSize = 16_KB;
|
||||
constexpr inline size_t AsyncThreadStackSize = 32_KB;
|
||||
|
||||
os::ThreadType g_async_threads[AsyncThreadCount];
|
||||
alignas(os::ThreadStackAlignment) u8 g_async_thread_stack_heap[AsyncThreadCount * AsyncThreadStackSize];
|
||||
|
|
|
@ -19,6 +19,6 @@
|
|||
|
||||
namespace ams::mitm::sysupdater {
|
||||
|
||||
DEFINE_MITM_MODULE_CLASS(0xC000, AMS_GET_SYSTEM_THREAD_PRIORITY(mitm_sysupdater, IpcServer));
|
||||
DEFINE_MITM_MODULE_CLASS(0x8000, AMS_GET_SYSTEM_THREAD_PRIORITY(mitm_sysupdater, IpcServer));
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue