event/SignalMonitor: remove unused function SignalMonitorGetEventLoop

This commit is contained in:
Max Kellermann 2016-06-20 10:48:01 +02:00
parent 4280f84535
commit 3fd70a769a
2 changed files with 0 additions and 13 deletions

View File

@ -170,12 +170,6 @@ SignalMonitorFinish()
monitor.Destruct();
}
EventLoop &
SignalMonitorGetEventLoop()
{
return monitor->GetEventLoop();
}
void
SignalMonitorRegister(int signo, SignalHandler handler)
{

View File

@ -42,13 +42,6 @@ SignalMonitorInit(EventLoop &loop);
void
SignalMonitorFinish();
/**
* Obtain a reference to the #EventLoop that was passed to
* SignalMonitorInit().
*/
EventLoop &
SignalMonitorGetEventLoop();
/**
* Register a handler for the specified signal. The handler will be
* invoked in a safe context.