event/SignalMonitor: fix build failure due to missing signal.h include
This commit is contained in:
parent
d34ae0850c
commit
0102a8665a
1
NEWS
1
NEWS
|
@ -7,6 +7,7 @@ ver 0.18.9 (not yet released)
|
||||||
- vorbis: fix another linker failure
|
- vorbis: fix another linker failure
|
||||||
* output
|
* output
|
||||||
- pipe: fix hanging child process due to blocked signals
|
- pipe: fix hanging child process due to blocked signals
|
||||||
|
* fix build failure due to missing signal.h include
|
||||||
|
|
||||||
ver 0.18.8 (2014/02/07)
|
ver 0.18.8 (2014/02/07)
|
||||||
* decoder
|
* decoder
|
||||||
|
|
|
@ -43,6 +43,8 @@
|
||||||
#include <pthread.h>
|
#include <pthread.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#include <signal.h>
|
||||||
|
|
||||||
class SignalMonitor final : private SocketMonitor {
|
class SignalMonitor final : private SocketMonitor {
|
||||||
#ifdef USE_SIGNALFD
|
#ifdef USE_SIGNALFD
|
||||||
SignalFD fd;
|
SignalFD fd;
|
||||||
|
|
Loading…
Reference in New Issue