1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-08 11:38:21 +02:00

Implemented IsBackground. Added GC.Disable

This commit is contained in:
Brian Fiete 2025-01-18 17:40:48 -08:00
parent af783bec7e
commit c21be1eea1
6 changed files with 69 additions and 24 deletions

View file

@ -111,6 +111,7 @@ public:
bool mStarted;
bool mJoinOnDelete;
bool mIsManualInit;
bool mIsBackground;
BfpThread* mThreadHandle;
intptr mThreadId;
Beefy::CritSect mCritSect;
@ -126,6 +127,7 @@ public:
mIsSuspended = false;
mJoinOnDelete = true;
mIsManualInit = false;
mIsBackground = false;
mStackStart = 0;
mThreadId = 0;
}