diff options
author | venkita <venkita@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2003-08-24 18:27:39 +0000 |
---|---|---|
committer | venkita <venkita@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2003-08-24 18:27:39 +0000 |
commit | 7a948522b445bc66347906b547a512f4780656bb (patch) | |
tree | 36babaa15a1dbd1784d07c64f28f7fbee6683dff /TAO/orbsvcs/Dump_Schedule | |
parent | 6e48e15dc70618eb1bf07c9fc19d55718d95b043 (diff) | |
download | ATCD-7a948522b445bc66347906b547a512f4780656bb.tar.gz |
ChangeLogTag: Sun Aug 24 13:09:50 2003 Venkita Subramonian <venkita@cs.wustl.edu>
Diffstat (limited to 'TAO/orbsvcs/Dump_Schedule')
-rw-r--r-- | TAO/orbsvcs/Dump_Schedule/Dump_Schedule.cpp | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/TAO/orbsvcs/Dump_Schedule/Dump_Schedule.cpp b/TAO/orbsvcs/Dump_Schedule/Dump_Schedule.cpp index eb83c4b51b6..c90b86978d3 100644 --- a/TAO/orbsvcs/Dump_Schedule/Dump_Schedule.cpp +++ b/TAO/orbsvcs/Dump_Schedule/Dump_Schedule.cpp @@ -1,3 +1,4 @@ + // $Id$ #include "ace/Sched_Params.h" @@ -46,6 +47,7 @@ ACE_TMAIN (int argc, ACE_TCHAR* argv[]) ACE_Scheduler_Factory::use_config (naming_context.in (), name); RtecScheduler::RT_Info_Set_var infos; + RtecScheduler::Dependency_Set_var deps; RtecScheduler::Config_Info_Set_var configs; RtecScheduler::Scheduling_Anomaly_Set_var anomalies; @@ -61,6 +63,7 @@ ACE_TMAIN (int argc, ACE_TCHAR* argv[]) // not define instances of _out types. RtecScheduler::RT_Info_Set_out infos_out (infos); + RtecScheduler::Dependency_Set_out deps_out (deps); RtecScheduler::Config_Info_Set_out configs_out (configs); RtecScheduler::Scheduling_Anomaly_Set_out anomalies_out (anomalies); ACE_Scheduler_Factory::server ()->compute_scheduling @@ -68,7 +71,7 @@ ACE_TMAIN (int argc, ACE_TCHAR* argv[]) ACE_SCOPE_THREAD), ACE_Sched_Params::priority_max (ACE_SCHED_FIFO, ACE_SCOPE_THREAD), - infos_out, configs_out, anomalies_out + infos_out, deps_out, configs_out, anomalies_out ACE_ENV_ARG_PARAMETER); // FUZZ: ignore check_for_ace_check #else /* ! __SUNPRO_CC */ ACE_Scheduler_Factory::server ()->compute_scheduling @@ -76,13 +79,14 @@ ACE_TMAIN (int argc, ACE_TCHAR* argv[]) ACE_SCOPE_THREAD), ACE_Sched_Params::priority_max (ACE_SCHED_FIFO, ACE_SCOPE_THREAD), - infos.out (), configs.out (), anomalies.out () + infos.out (), deps.out (), configs.out (), anomalies.out () ACE_ENV_ARG_PARAMETER); // FUZZ: ignore check_for_ace_check #endif /* ! __SUNPRO_CC */ ACE_TRY_CHECK; ACE_Scheduler_Factory::dump_schedule (infos.in (), + deps.in (), configs.in (), anomalies.in (), "Scheduler_Runtime.cpp"); |