-
Notifications
You must be signed in to change notification settings - Fork 4.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fixed a broken build with STRESS_DYNAMIC_HEAP_COUNT enabled #105507
Conversation
I noticed this too since I've been running with stress enabled. I fixed it differently by moving this line
to be right before the last
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We can build Core_Root with this fix when STRESS_DYNAMIC_HEAP_COUNT is enabled.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
Currently, enabling the STRESS_DYNAMIC_HEAP_COUNT stress mode doesn't build as a result of an undeclared
num_gen2s_since_last_change
when we fire the Size Adaptation Full GC Tuning Event:This fix ensures that with STRESS_DYNAMIC_HEAP_COUNT enabled, we can build successfully and emit the aforementioned event.
Thanks to @VincentBu for finding this issue.