We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 202a401 commit 19a2969Copy full SHA for 19a2969
src/coreclr/gc/gc.cpp
@@ -49322,10 +49322,10 @@ bool GCHeap::StressHeap(gc_alloc_context * context)
49322
49323
int rgen = StressRNG(100);
49324
49325
- // gen0:gen1:gen2 distribution: 80:15:5
49326
- if (rgen >= 95)
+ // gen0:gen1:gen2 distribution: 90:8:2
+ if (rgen >= 98)
49327
rgen = 2;
49328
- else if (rgen >= 80)
+ else if (rgen >= 90)
49329
rgen = 1;
49330
else
49331
rgen = 0;
0 commit comments