trick/trick_source/sim_services/Executive/Executive_loop.cpp

62 lines
2.0 KiB
C++
Raw Normal View History

2015-02-26 15:02:31 +00:00
#include <stdlib.h>
#include <exception>
#include "trick/Executive.hh"
#include "trick/ExecutiveException.hh"
2015-02-26 15:02:31 +00:00
/**
@details
-# If the #freeze_command flag is true, set the simulation mode to Freeze.
-# The scheduler sets the mode to Run.
Requirement [@ref r_exec_mode_1]
-# The scheduler calls Executive::loop_single_thread if only one thread of execution is present.
Requirement [@ref r_exec_mode_0]
-# The scheduler calls Executive::loop_multi_thread() if more than one thread of
execution is present.
Requirement [@ref r_exec_mode_1]
-# If an exception is caught, the return code, file where the exception occured, and the
reason for the exception is saved. The exception return code is returned.
-# If an unknown exception is caught, set the exception return code to -1, the file to unknown, and the
reason for the exception as unknown. The exception return code is returned.
-# If no execption is caught return 0
*/
int Trick::Executive::loop() {
try {
/* If no threads are present, the simulation did not initialize correctly, return */
if ( threads.size() == 0 ) {
return(0) ;
}
/* If the #freeze_command flag is true, set the simulation mode to Freeze. */
if ( freeze_command ) {
exec_command = FreezeCmd ;
}
/* Set the simulation mode to Run. */
mode = Run ;
if ( threads.size() == 1 ) {
/* Call loop_single_thread() if there is a single thread. */
loop_single_thread() ;
} else {
/* Call loop_multi_thread() if there is more than one thread. */
loop_multi_thread() ;
}
}
catch (Trick::ExecutiveException & ex ) {
/* Handle exception type Trick::ExecutiveException. Set the file name and error message.
2015-02-26 15:02:31 +00:00
Return the exception return code. */
except_return = ex.ret_code ;
except_file = ex.file ;
except_message = ex.message ;
return(ex.ret_code) ;
}
/* return 0 if there are no errors. */
return(0) ;
}