class notify reduced too single file.
This commit is contained in:
@@ -10,14 +10,12 @@ libutils_a_SOURCES = appl.cpp \
|
||||
daemon.h \
|
||||
logger.cpp \
|
||||
logger.h \
|
||||
notify.cpp \
|
||||
notify.h \
|
||||
tcpsocket.cpp \
|
||||
tcpsocket.h \
|
||||
thread.cpp \
|
||||
thread.h \
|
||||
wqueue.h
|
||||
|
||||
wqueue.h \
|
||||
notify.h
|
||||
|
||||
distclean-local:
|
||||
-rm -f Makefile.in
|
||||
|
||||
@@ -1,42 +0,0 @@
|
||||
/*
|
||||
* Copyright (C) Roland Jax 2012-2014 <ebusd@liwest.at>
|
||||
*
|
||||
* This file is part of ebusd.
|
||||
*
|
||||
* ebusd 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 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* ebusd 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 ebusd. If not, see http://www.gnu.org/licenses/.
|
||||
*/
|
||||
|
||||
#include "notify.h"
|
||||
|
||||
Notify::Notify()
|
||||
{
|
||||
int pipefd[2];
|
||||
int ret = pipe(pipefd);
|
||||
|
||||
if (ret == 0) {
|
||||
m_recvfd = pipefd[0];
|
||||
m_sendfd = pipefd[1];
|
||||
|
||||
fcntl(m_sendfd, F_SETFL, O_NONBLOCK);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Notify::~Notify()
|
||||
{
|
||||
close(m_sendfd);
|
||||
close(m_recvfd);
|
||||
}
|
||||
|
||||
|
||||
+13
-2
@@ -35,12 +35,23 @@ public:
|
||||
/**
|
||||
* @brief constructs a new instance and do notifying.
|
||||
*/
|
||||
Notify();
|
||||
Notify()
|
||||
{
|
||||
int pipefd[2];
|
||||
int ret = pipe(pipefd);
|
||||
|
||||
if (ret == 0) {
|
||||
m_recvfd = pipefd[0];
|
||||
m_sendfd = pipefd[1];
|
||||
|
||||
fcntl(m_sendfd, F_SETFL, O_NONBLOCK);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief destructor.
|
||||
*/
|
||||
~Notify();
|
||||
~Notify() { close(m_sendfd); close(m_recvfd); }
|
||||
|
||||
/**
|
||||
* @brief file descriptor to watch for notify event.
|
||||
|
||||
Reference in New Issue
Block a user