1
0
mirror of https://github.com/cathery/sys-con.git synced 2024-09-28 14:40:46 +00:00

Reduce psc thread's memory

This commit is contained in:
cathery 2020-03-13 13:38:51 +03:00
parent 4cd616570f
commit 3dfa505ca8

View File

@ -15,13 +15,12 @@ namespace syscon::psc
void PscThreadFunc(void *arg);
ams::os::StaticThread<0x2'000> g_psc_thread(&PscThreadFunc, nullptr, 0x2C);
ams::os::StaticThread<0x1'000> g_psc_thread(&PscThreadFunc, nullptr, 0x2C);
bool is_psc_thread_running = false;
void PscThreadFunc(void *arg)
{
WriteToLog("Starting PSC thread!");
do {
if (R_SUCCEEDED(waitSingle(pscModuleWaiter, U64_MAX)))
{