Skip to content
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

Disable TR_UseIdleTime temporarily #20442

Merged
merged 1 commit into from
Oct 30, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion runtime/compiler/control/J9Options.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3425,7 +3425,7 @@ bool J9::Options::feLatePostProcess(void * base, TR::OptionSet * optionSet)
// The exploitation of idle time is done by a tracking mechanism done
// on the IProfiler thread. If this thread does not exist, then we
// must turn this feature off to avoid allocating a useless hashtable
if (self()->getOption(TR_DisableIProfilerThread))
if (true || self()->getOption(TR_DisableIProfilerThread)) // Disable UseIdleTime temporarily
self()->setOption(TR_UseIdleTime, false);

// If NoResumableTrapHandler is set, disable packed decimal intrinsics inlining because
Expand Down