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

UpdateF, dx reinit

This commit is contained in:
Brian Fiete 2022-05-15 08:00:55 -07:00
parent fa2cb7ba56
commit e87bf5b029
24 changed files with 1029 additions and 415 deletions

View file

@ -133,6 +133,8 @@ namespace System
public extern static void SetMaxPausePercentage(int maxPausePercentage); // 0 = disabled. Defaults to 20.
[CallingConvention(.Cdecl)]
extern static void AddPendingThread(void* internalThread);
[CallingConvention(.Cdecl)]
public extern static void ExcludeThreadId(int thereadId);
#else
public static void Collect(bool async = true) {}
private static void MarkAllStaticMembers() {}
@ -144,6 +146,7 @@ namespace System
public static void SetCollectFreeThreshold(int freeBytes) {}
public static void SetMaxPausePercentage(int maxPausePercentage) {}
static void AddPendingThread(void* internalThreadInfo) {}
public static void ExcludeThreadId(int thereadId) {}
#endif
static void MarkDerefedObject(Object* obj)