summaryrefslogtreecommitdiff
path: root/TAO/examples/RTScheduling/Task_Stats.inl
blob: 3b50f8c52a43ca58ef9e14064290d9a9f1168a87 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//$Id$

ACE_INLINE int
Task_Stats::sample (ACE_UINT32 thr_run_time, int thr_count)
{
  if (this->samples_count_ >= this->max_samples_)
  {
    ACE_DEBUG ((LM_DEBUG, "Task_Stats::sample ret -1\n"));
    return -1;
   }

  this->thr_run_time_[this->samples_count_] = thr_run_time;
  this->thr_count_[this->samples_count_] = thr_count;

  this->samples_count_++;
  return 0;
}