Skip to content

Commit

Permalink
Merge pull request #20442 from mpirvu/disableuseidle
Browse files Browse the repository at this point in the history
Disable TR_UseIdleTime temporarily
  • Loading branch information
pshipton authored Oct 30, 2024
2 parents d5ea8f3 + 65bb45b commit fc6f64c
Showing 1 changed file with 1 addition and 1 deletion.
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

0 comments on commit fc6f64c

Please sign in to comment.