Skip to content

Commit

Permalink
Revert the time category for re-joining threads
Browse files Browse the repository at this point in the history
  • Loading branch information
fwyzard committed Aug 10, 2023
1 parent 63ed0a8 commit d8a3e8e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion HLTrigger/Timer/plugins/FastTimerService.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1787,7 +1787,8 @@ void FastTimerService::on_scheduler_entry(bool worker) {
// - not accounted: thread().measure()
// - considered as idle: thread().measure_and_accumulate(job_summary_.idle)
// - considered as other: thread().measure_and_accumulate(job_summary_.overhead)
thread().measure_and_accumulate(job_summary_.overhead);
// FIXME "considered as other" has been seen to produce unreliable results; revert to "not accounted" for the time being.
thread().measure();
}
}

Expand Down

0 comments on commit d8a3e8e

Please sign in to comment.