Main Page | Class List | File List | Class Members | File Members

signal.c

Go to the documentation of this file.
00001 /*
00002  *  $Id: signal.c,v 1.3 2005/12/16 23:33:35 ghost666 Exp $
00003  *
00004  *  rssbgr - RSS backgroud reader
00005  *  Copyright (C) 2005 Piotr 'GhosT' Wydrych
00006  *
00007  *  This program is free software; you can redistribute it and/or modify
00008  *  it under the terms of the GNU General Public License as published by
00009  *  the Free Software Foundation; either version 2 of the License, or
00010  *  (at your option) any later version.
00011  *
00012  *  This program is distributed in the hope that it will be useful,
00013  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
00014  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00015  *  GNU General Public License for more details.
00016  *
00017  *  You should have received a copy of the GNU General Public License
00018  *  along with this program; if not, write to the Free Software
00019  *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
00020  */
00021 
00022 #include "signal.h"
00023 
00024 void set_signal_handlers(void)
00025 {
00026  DEBUG2("set_signal_handlers: start; i_am = %d", i_am)
00027  struct sigaction sa;
00028  sa.sa_handler = catch_signal;
00029  sigemptyset(&sa.sa_mask);
00030  sa.sa_flags =0;
00031  if (!sigaction(SIGHUP, &sa, NULL) == -1) DIE("Couldn't set a trap for SIGHUP")
00032  if (!sigaction(SIGTERM, &sa, NULL) == -1) DIE("Couldn't set a trap for SIGTERM")
00033  DEBUG2("set_signal_handlers: end; i_am = %d", i_am)
00034 }
00035 
00036 /* --------- */
00037 
00038 void catch_signal(int sig)
00039 {
00040  DEBUG3("catch_signal: i_am = %d; sig = %d", i_am, sig)
00041  unlink(lockfile);
00042  if (sig == SIGTERM)
00043  {
00044   if (i_am == I_AM_CHILD)
00045    DEBUG1("Child ends after a SIGTERM.")
00046   else
00047    DEBUG1("Granchild ends after a SIGTERM.")
00048   _exit(15);
00049  }
00050 }

Generated on Fri May 26 08:40:18 2006 for RSSbgr by doxygen 1.3.6