FACT++  1.0
void interrupt_handler ( int  sig)

Definition at line 3094 of file feeserver.c.

References cleanUp(), and fee_exit_handler().

3094  {
3095 // *** causes props on DCS board -> not used yet ***
3096 # ifdef __DEBUG
3097  printf("Received interrupt: %d, exiting now.\n", sig);
3098  fflush(stdout);
3099 # endif
3100 
3101  if ((state == RUNNING) || (state == ERROR_STATE)) {
3102  fee_exit_handler(0);
3103  } else {
3104  cleanUp();
3105  exit(0);
3106  }
3107 }
void cleanUp()
Definition: feeserver.c:3159
void fee_exit_handler(unsigned int state)
Definition: feeserver.c:3109

+ Here is the call graph for this function: