2015-03-23 21:03:14 +00:00
|
|
|
/*
|
2015-02-26 15:02:31 +00:00
|
|
|
PURPOSE: (This function switches on signal type to act on specific signal. This function performs the signal
|
|
|
|
handling for both master and child processes.)
|
|
|
|
|
|
|
|
REFERENCE: (((Bailey, R.W, and Paddock, E.J.) (Trick Simulation Environment) (NASA:JSC #37943) (JSC / Engineering
|
|
|
|
Directorate / Automation and Robotics Division) (June 1994) (--)))
|
|
|
|
|
|
|
|
ASSUMPTIONS AND LIMITATIONS: ((None))
|
|
|
|
|
|
|
|
CLASS: (N/A)
|
|
|
|
|
|
|
|
LIBRARY DEPENDENCY: ((none))
|
|
|
|
|
|
|
|
PROGRAMMERS: (((Eddie J. Paddock) (MDSSC) (April 1992) (--) (Realtime)) ((Scott Killingsworth) (LinCom) (September
|
|
|
|
1997) (--) (Issue #1016))) */
|
|
|
|
|
|
|
|
#include <iostream>
|
|
|
|
#include <sstream>
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <signal.h>
|
|
|
|
|
2015-06-01 15:28:29 +00:00
|
|
|
#include "trick/Executive.hh"
|
|
|
|
#include "trick/exec_proto.hh"
|
2015-02-26 15:02:31 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @relates Trick::Executive
|
|
|
|
* C binded function to handle UNIX signals for the simulation.
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
void sig_hand(int sig) {
|
|
|
|
Trick::Executive * E = exec_get_exec_cpp();
|
|
|
|
E->signal_handler(sig) ;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ctrl_c_hand(int sig __attribute__ ((unused))) {
|
|
|
|
Trick::Executive * E = exec_get_exec_cpp();
|
|
|
|
E->ctrl_c_handler() ;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
void term_hand(int sig __attribute__ ((unused))) {
|
|
|
|
Trick::Executive * E = exec_get_exec_cpp();
|
|
|
|
E->term_handler() ;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
void usr1_hand(int sig __attribute__ ((unused))) {
|
|
|
|
Trick::Executive * E = exec_get_exec_cpp();
|
|
|
|
E->usr1_handler() ;
|
|
|
|
return;
|
|
|
|
}
|