1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-21 09:27:59 +02:00

Added NoThreadExitWait Rt option for DLLs

This commit is contained in:
Brian Fiete 2020-09-01 16:22:48 -07:00
parent 177b5b7254
commit b2ab1b1f62
7 changed files with 36 additions and 5 deletions

View file

@ -279,14 +279,17 @@ namespace System
ObjectHasDebugFlags = 1,
LeakCheck = 2,
SilentCrash = 4,
DebugAlloc = 8
DebugAlloc = 8,
NoThreadExitWait = 0x10
}
static RtFlags sExtraFlags;
public static this()
{
BfRtCallbacks.sCallbacks.Init();
RtFlags flags = default;
RtFlags flags = sExtraFlags;
#if BF_ENABLE_OBJECT_DEBUG_FLAGS
flags |= .ObjectHasDebugFlags;
#endif