예제 #1
0
파일: FvwmCommand.c 프로젝트: fvwmorg/fvwm
/*
 *  signal handlers
 */
static RETSIGTYPE
sig_quit(int sig)
{
  close_fifos();
  fvwmSetTerminate(sig);
  SIGNAL_RETURN;
}
예제 #2
0
/*
 *
 *  Procedure:
 *  Signal handler that tells the module to quit
 *
 */
static RETSIGTYPE
TerminateHandler(int signo)
{
	fvwmSetTerminate(signo);
	SIGNAL_RETURN;
}
예제 #3
0
파일: FvwmPager.c 프로젝트: att/uwin
/***********************************************************************
 *
 *  Procedure:
 *	SIGPIPE handler - SIGPIPE means fvwm is dying
 *
 ***********************************************************************/
static RETSIGTYPE
TerminateHandler(int sig)
{
  fvwmSetTerminate(sig);
}