From 520596363b12feece2069c644e9f0fc3725e8103 Mon Sep 17 00:00:00 2001 From: SP193 Date: Sun, 30 Sep 2018 13:02:58 +0800 Subject: [PATCH] CDVDFSV: increased stack size of RPC 1. Related to d25a8eab. --- modules/iopcore/cdvdfsv/cdvdfsv.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/iopcore/cdvdfsv/cdvdfsv.c b/modules/iopcore/cdvdfsv/cdvdfsv.c index 9614d1d86..b43492a9a 100644 --- a/modules/iopcore/cdvdfsv/cdvdfsv.c +++ b/modules/iopcore/cdvdfsv/cdvdfsv.c @@ -264,7 +264,7 @@ static void cdvdfsv_startrpcthreads(void) thread_param.attr = TH_C; thread_param.option = 0xABCD8001; thread_param.thread = (void *)cdvdfsv_rpc1_th; - thread_param.stacksize = 0x500; //Original: 0x1900. Its operations probably won't need so much space, since its functions will never trigger a callback. + thread_param.stacksize = 0x600; //Original: 0x1900. Its operations probably won't need so much space, since its functions will never trigger a callback. thread_param.priority = 0x51; rpc1_thread_id = CreateThread(&thread_param);