mirror of
https://github.com/nasa/trick.git
synced 2025-01-02 19:36:45 +00:00
19025d77ad
Reorganized. Created a new top level include directory that will hold all of Trick's header files. Moved all of the Trick headers to this directory. Created a libexec directory that holds all of the executables that users don't need to execute directly. Changed all of the executables remaining in bin to start with "trick-". In the sim_services directories changed all source files to find the Trick headers in their new location. Since all of the include files are gone in sim_services, removed the src directories as well, moving all of the source files up a level. Moved the makefiles, docs, man, and other architecture independent files into a top level share directory. Renamed lib_${TRICK_HOST_CPU} to lib64 or lib depending on the platform we're currently on. refs #63
37 lines
1.3 KiB
C
37 lines
1.3 KiB
C
/*
|
|
PURPOSE:
|
|
(For master/slave sim, this is slave info)
|
|
PROGRAMMERS:
|
|
(((Eddie J. Paddock) (LinCom) (April 1996) (--) (Initial Version))
|
|
((Scott Killingsworth) (LinCom) (September 1997) (--) (--)))
|
|
*/
|
|
|
|
/**
|
|
* @class MS_SIM_COMMAND sim_mode.h
|
|
* The MS_SIM_COMMAND enumeration represents the TRICK simulation commmands.
|
|
*/
|
|
|
|
#ifndef MS_SIMMODE_HH
|
|
#define MS_SIMMODE_HH
|
|
|
|
#define MS_ERROR_TIME -1000000000
|
|
#define MS_ERROR_PORT -1
|
|
#define MS_ERROR_NAME -1
|
|
|
|
typedef enum {
|
|
|
|
MS_NoCmd = 0, /* Executive mode: NoCmd */
|
|
MS_FreezeCmd = 2, /* Executive mode: freeze */
|
|
MS_RunCmd = 3, /* Executive mode: run */
|
|
MS_ExitCmd = 10, /* Executive mode: exit */
|
|
MS_ErrorCmd = 11, /* Master/Slave: an error was detected */
|
|
MS_ReconnectCmd = 12, /* Master/Slave: slave reconnected after chkpnt load */
|
|
MS_ChkpntDumpAsciiCmd = 13, /* Master/Slave: master tells slave to dump an ascii chkpnt */
|
|
MS_ChkpntLoadAsciiCmd = 14, /* Master/Slave: master tells slave to load an ascii chkpnt */
|
|
MS_ChkpntDumpBinCmd = 15, /* Master/Slave: master tells slave to dump a binary chkpnt */
|
|
MS_ChkpntLoadBinCmd = 16 /* Master/Slave: master tells slave to load a binary chkpnt */
|
|
|
|
} MS_SIM_COMMAND;
|
|
|
|
#endif
|