summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/Sched/Reconfig_Scheduler.cpp
blob: e8f3962e13c03985abf647f480453c34d5568980 (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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
// ============================================================================
//
// $Id$
//
// ============================================================================
//
// = LIBRARY
//    orbsvcs
//
// = FILENAME
//    Reconfig_Scheduler.cpp
//
// = AUTHOR
//     Chris Gill <cdgill@cs.wustl.edu>
//
// ============================================================================

#ifndef TAO_RECONFIG_SCHEDULER_C
#define TAO_RECONFIG_SCHEDULER_C

#include "Reconfig_Scheduler_T.h"
#include "Reconfig_Scheduler.h"


#if !defined (ACE_LACKS_PRAGMA_ONCE)
# pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */

ACE_RCSID(Sched, Reconfig_Scheduler, "$Id$")

#if defined (ACE_HAS_EXPLICIT_TEMPLATE_INSTANTIATION)
template void maintain_scheduling_array <> (TAO_Reconfig_Scheduler_Entry **&,
                                            long&, RtecScheduler::handle_t ACE_ENV_ARG_DECL)
  ACE_THROW_SPEC ((CORBA::SystemException));

template void maintain_scheduling_array <> (TAO_RT_Info_Tuple **&, long&,
                                   RtecScheduler::handle_t ACE_ENV_ARG_DECL)
  ACE_THROW_SPEC ((CORBA::SystemException));
#elif defined(ACE_HAS_TEMPLATE_INSTANTIATION_PRAGMA)
template void maintain_scheduling_array <> (TAO_Reconfig_Scheduler_Entry **&,
                                            long&, RtecScheduler::handle_t ACE_ENV_ARG_DECL)
  ACE_THROW_SPEC ((CORBA::SystemException));

template void maintain_scheduling_array <> (TAO_RT_Info_Tuple **&, long&,
                                   RtecScheduler::handle_t ACE_ENV_ARG_DECL)
  ACE_THROW_SPEC ((CORBA::SystemException));
#endif /* ACE_HAS_EXPLICIT_TEMPLATE_INSTANTIATION */

#endif /* TAO_RECONFIG_SCHEDULER_C */