1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-10 12:32:20 +02:00

Increase stack size

This commit is contained in:
Brian Fiete 2020-03-09 08:42:34 -07:00
parent a67f68ee8c
commit 6f4680cb88

View file

@ -1484,8 +1484,8 @@ BpResult BpManager::Init(const char* serverName, const char* sessionName)
}
mRootCmdTarget.Init();
mThread = BfpThread_Create(ThreadProcThunk, (void*)this, 64 * 1024, BfpThreadCreateFlag_StackSizeReserve, &mThreadId);
mThread = BfpThread_Create(ThreadProcThunk, (void*)this, 512 * 1024, BfpThreadCreateFlag_StackSizeReserve, &mThreadId);
return BpResult_Ok;
}