summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/Scheduler_Utilities.i
blob: 1d62ceffaf526e6aeedd3e955ba58d1fbe787905 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
// ============================================================================
//
// $Id$
//
// ============================================================================

ACE_INLINE
ACE_RT_Info::ACE_RT_Info (const char* entry_point_,
			  RtecScheduler::Time worst_time_,
			  RtecScheduler::Time typical_time_,
			  RtecScheduler::Time cached_time_,
			  RtecScheduler::Period period_,
			  RtecScheduler::Importance importance_,
			  RtecScheduler::Quantum quantum_,
			  CORBA::Long threads_)
{
  this->entry_point = entry_point_;
  this->worst_case_execution_time = worst_time_;
  this->typical_execution_time = typical_time_;
  this->cached_execution_time = cached_time_;
  this->period = period_;
  this->importance = importance_;
  this->quantum = quantum_;
  this->threads = threads_;
}

ACE_INLINE
ACE_RT_Info::ACE_RT_Info (const RtecScheduler::RT_Info& rt_info)
  :  RtecScheduler::RT_Info (rt_info)
{
}