From f1225c9ed1495d6870cae1e8088bb113d56539cb Mon Sep 17 00:00:00 2001 From: KazushiM <85604869+KazushiMe@users.noreply.github.com> Date: Mon, 31 Oct 2022 11:49:34 +0800 Subject: [PATCH] Revert IpcService thread stack size (#47) --- Source/sys-clk-OC/sysmodule/src/ipc_service.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/sys-clk-OC/sysmodule/src/ipc_service.cpp b/Source/sys-clk-OC/sysmodule/src/ipc_service.cpp index 11ad311d..407c44fe 100644 --- a/Source/sys-clk-OC/sysmodule/src/ipc_service.cpp +++ b/Source/sys-clk-OC/sysmodule/src/ipc_service.cpp @@ -22,7 +22,7 @@ IpcService::IpcService() ASSERT_RESULT_OK(rc, "svcGetThreadPriority"); rc = ipcServerInit(&this->server, SYSCLK_IPC_SERVICE_NAME, 42); ASSERT_RESULT_OK(rc, "ipcServerInit"); - rc = threadCreate(&this->thread, &IpcService::ProcessThreadFunc, this, NULL, 0x1000, priority, -2); + rc = threadCreate(&this->thread, &IpcService::ProcessThreadFunc, this, NULL, 0x2000, priority, -2); ASSERT_RESULT_OK(rc, "threadCreate"); this->running = false; }