Skip to content

Commit

Permalink
Reduce psc thread stack size
Browse files Browse the repository at this point in the history
  • Loading branch information
cathery committed Nov 24, 2019
1 parent e889c6e commit c2e12bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/mainLoop.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ Result mainLoop()
Thread pscThread;
PSCLoopBuffer loopBuffer{pscModule, pscLoopRunning, shouldSleep};

threadCreate(&pscThread, pscLoop, &loopBuffer, NULL, 0x2000, 0x3B, -2);
threadCreate(&pscThread, pscLoop, &loopBuffer, NULL, 0x300, 0x3B, -2);

rc = threadStart(&pscThread);
WriteToLog("PSC thread start: 0x", std::hex, rc);
Expand Down

0 comments on commit c2e12bc

Please sign in to comment.