mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-10 04:22:20 +02:00
Made stack space configurable
This commit is contained in:
parent
2e3356d04a
commit
0783fd3318
2 changed files with 4 additions and 2 deletions
|
@ -8,6 +8,7 @@ class WorkThread
|
|||
{
|
||||
public:
|
||||
BfpThread* mThread;
|
||||
int mStackSize;
|
||||
|
||||
public:
|
||||
WorkThread();
|
||||
|
@ -25,7 +26,7 @@ class WorkThreadFunc : public WorkThread
|
|||
{
|
||||
public:
|
||||
void (*mFunc)(void*);
|
||||
void* mParam;
|
||||
void* mParam;
|
||||
|
||||
public:
|
||||
// Note: this startProc signature does not match BfpThreadStartProc -- here we abstract out the calling convention to be default
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue