2004-02-24 00:41:20 +01:00
|
|
|
/* the Music Player Daemon (MPD)
|
2007-04-05 05:22:33 +02:00
|
|
|
* Copyright (C) 2003-2007 by Warren Dukes (warren.dukes@gmail.com)
|
2004-06-04 22:36:18 +02:00
|
|
|
* (c) 2004 Nick Welch (mack@incise.org)
|
2004-02-24 00:41:20 +01:00
|
|
|
* This project's homepage is: http://www.musicpd.org
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "sig_handlers.h"
|
2004-04-12 01:07:43 +02:00
|
|
|
#include "command.h"
|
|
|
|
#include "signal_check.h"
|
|
|
|
#include "log.h"
|
2005-11-16 15:43:04 +01:00
|
|
|
|
2008-10-08 10:49:29 +02:00
|
|
|
#include <sys/signal.h>
|
|
|
|
#include <errno.h>
|
2008-11-24 14:45:32 +01:00
|
|
|
#include <glib.h>
|
2008-10-08 10:49:29 +02:00
|
|
|
|
2006-08-08 04:23:21 +02:00
|
|
|
int handlePendingSignals(void)
|
2006-07-20 18:02:40 +02:00
|
|
|
{
|
|
|
|
if (signal_is_pending(SIGINT) || signal_is_pending(SIGTERM)) {
|
|
|
|
DEBUG("main process got SIGINT or SIGTERM, exiting\n");
|
2004-04-12 01:07:43 +02:00
|
|
|
return COMMAND_RETURN_KILL;
|
2006-07-20 18:02:40 +02:00
|
|
|
}
|
2004-04-12 01:07:43 +02:00
|
|
|
|
2006-07-20 18:02:40 +02:00
|
|
|
if (signal_is_pending(SIGHUP)) {
|
|
|
|
DEBUG("got SIGHUP, rereading DB\n");
|
2004-04-12 01:07:43 +02:00
|
|
|
signal_clear(SIGHUP);
|
2006-08-01 06:18:53 +02:00
|
|
|
if (cycle_log_files() < 0)
|
2006-07-20 18:02:40 +02:00
|
|
|
return COMMAND_RETURN_KILL;
|
2004-02-24 00:41:20 +01:00
|
|
|
}
|
|
|
|
|
2004-04-12 01:07:43 +02:00
|
|
|
return 0;
|
2004-04-11 02:52:05 +02:00
|
|
|
}
|
|
|
|
|
2006-08-08 04:23:21 +02:00
|
|
|
void initSigHandlers(void)
|
2006-07-20 18:02:40 +02:00
|
|
|
{
|
2004-02-24 00:41:20 +01:00
|
|
|
struct sigaction sa;
|
|
|
|
|
|
|
|
sa.sa_flags = 0;
|
2006-07-19 01:38:21 +02:00
|
|
|
sigemptyset(&sa.sa_mask);
|
2004-02-24 00:41:20 +01:00
|
|
|
sa.sa_handler = SIG_IGN;
|
2006-07-20 18:02:40 +02:00
|
|
|
while (sigaction(SIGPIPE, &sa, NULL) < 0 && errno == EINTR) ;
|
|
|
|
signal_handle(SIGUSR1);
|
|
|
|
signal_handle(SIGINT);
|
|
|
|
signal_handle(SIGTERM);
|
|
|
|
signal_handle(SIGHUP);
|
2004-02-24 00:41:20 +01:00
|
|
|
}
|