Skip to content

Commit

Permalink
CDVDFSV: increased stack size of RPC 1. Related to d25a8ea.
Browse files Browse the repository at this point in the history
  • Loading branch information
sp193 committed Sep 30, 2018
1 parent ad182dc commit 5205963
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/iopcore/cdvdfsv/cdvdfsv.c
Expand Up @@ -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);
Expand Down

0 comments on commit 5205963

Please sign in to comment.