You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/absil/illib.fs
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -40,8 +40,8 @@ let inline nonNull msg x = if isNull x then failwith ("null: " + msg) else x
40
40
let inline(===) x y = LanguagePrimitives.PhysicalEquality x y
41
41
42
42
/// Per the docs the threshold for the Large Object Heap is 85000 bytes: https://docs.microsoft.com/en-us/dotnet/standard/garbage-collection/large-object-heap#how-an-object-ends-up-on-the-large-object-heap-and-how-gc-handles-them
43
-
/// We set the limit to slightly under that to allow for some 'slop'
44
-
letLOH_SIZE_THRESHOLD_BYTES=84_900
43
+
/// We set the limit to be 80k to account for larger pointer sizes for when F# is running 64-bit.
0 commit comments