@@ -128,6 +128,15 @@ def __post_init__(self) -> None:
128
128
""" ,
129
129
)
130
130
@doc_field ("complus_gcheaphardlimit" , "Hard limit on heap size, in bytes. (decimal)" )
131
+ @doc_field (
132
+ "complus_gcheaphardlimitsoh" , "Hard limit on small object heap size, in bytes. (decimal)"
133
+ )
134
+ @doc_field (
135
+ "complus_gcheaphardlimitloh" , "Hard limit on large object heap size, in bytes. (decimal)"
136
+ )
137
+ @doc_field (
138
+ "complus_gcheaphardlimitpoh" , "Hard limit on pinned object heap size, in bytes. (decimal)"
139
+ )
131
140
@doc_field ("complus_gclargepages" , "Set to true to enable large pages." )
132
141
@doc_field ("complus_gcnoaffinitize" , "Set to true to prevent affinitizing GC threads to cpu cores." )
133
142
@doc_field ("complus_gccpugroup" , "Set to true to enable CPU groups." )
@@ -182,6 +191,9 @@ class ConfigOptions:
182
191
complus_gcheapaffinitizeranges : Optional [str ] = None
183
192
complus_gcheapcount : Optional [int ] = None
184
193
complus_gcheaphardlimit : Optional [int ] = None
194
+ complus_gcheaphardlimitsoh : Optional [int ] = None
195
+ complus_gcheaphardlimitloh : Optional [int ] = None
196
+ complus_gcheaphardlimitpoh : Optional [int ] = None
185
197
complus_gclargepages : Optional [bool ] = None
186
198
complus_gcnoaffinitize : Optional [bool ] = None
187
199
complus_gccpugroup : Optional [bool ] = None
@@ -342,6 +354,9 @@ def ob(name: str, v: Optional[bool]) -> Optional[Mapping[str, str]]:
342
354
),
343
355
od ("COMPlus_GCHeapCount" , cfg .complus_gcheapcount ),
344
356
od ("COMPlus_GCHeapHardLimit" , cfg .complus_gcheaphardlimit ),
357
+ od ("COMPlus_GCHeapHardLimitSOH" , cfg .complus_gcheaphardlimitsoh ),
358
+ od ("COMPlus_GCHeapHardLimitLOH" , cfg .complus_gcheaphardlimitloh ),
359
+ od ("COMPlus_GCHeapHardLimitPOH" , cfg .complus_gcheaphardlimitpoh ),
345
360
ob ("COMPlus_GCLargePages" , cfg .complus_gclargepages ),
346
361
ob ("COMPlus_GCNoAffinitize" , cfg .complus_gcnoaffinitize ),
347
362
ob ("COMPlus_GCCpuGroup" , cfg .complus_gccpugroup ),
0 commit comments