2013-08-06 21:31:59 +02:00
|
|
|
/*
|
2021-01-01 19:54:25 +01:00
|
|
|
* Copyright 2003-2021 The Music Player Daemon Project
|
2013-08-06 21:31:59 +02:00
|
|
|
* 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.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef MPD_SOCKET_SIGNAL_MONITOR_HXX
|
|
|
|
#define MPD_SOCKET_SIGNAL_MONITOR_HXX
|
|
|
|
|
|
|
|
class EventLoop;
|
|
|
|
|
2017-12-12 10:22:20 +01:00
|
|
|
#ifndef _WIN32
|
2013-08-06 21:31:59 +02:00
|
|
|
|
2016-06-20 10:25:28 +02:00
|
|
|
#include "util/BindMethod.hxx"
|
|
|
|
|
|
|
|
typedef BoundMethod<void()> SignalHandler;
|
2013-08-06 21:31:59 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Initialise the signal monitor subsystem.
|
2018-08-06 11:53:45 +02:00
|
|
|
*
|
|
|
|
* Throws on error.
|
2013-08-06 21:31:59 +02:00
|
|
|
*/
|
|
|
|
void
|
|
|
|
SignalMonitorInit(EventLoop &loop);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Deinitialise the signal monitor subsystem.
|
|
|
|
*/
|
|
|
|
void
|
2018-08-06 11:48:25 +02:00
|
|
|
SignalMonitorFinish() noexcept;
|
2013-08-06 21:31:59 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Register a handler for the specified signal. The handler will be
|
|
|
|
* invoked in a safe context.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
SignalMonitorRegister(int signo, SignalHandler handler);
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
|
|
|
static inline void
|
|
|
|
SignalMonitorInit(EventLoop &)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void
|
2018-08-06 11:48:35 +02:00
|
|
|
SignalMonitorFinish() noexcept
|
2013-08-06 21:31:59 +02:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* MAIN_NOTIFY_H */
|