Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ RemoveMemoryPressure()

static void System.GC.RemoveMemoryPressure ( long bytesAllocated)
inlinestatic

Definition at line 104 of file GC.cs.

105 {
106 if (bytesAllocated <= 0)
107 {
108 throw new ArgumentOutOfRangeException("bytesAllocated", SR.ArgumentOutOfRange_NeedPosNum);
109 }
110 if (4 == IntPtr.Size)
111 {
112 }
113 _RemoveMemoryPressure((ulong)bytesAllocated);
114 }
static void _RemoveMemoryPressure(ulong bytesAllocated)

References System.GC._RemoveMemoryPressure(), System.SR.ArgumentOutOfRange_NeedPosNum, and System.IntPtr.Size.