class notify reduced too single file.

This commit is contained in:
Roland Jax
2015-01-07 23:12:39 +01:00
parent c09f98eb8a
commit 4e85f82250
3 changed files with 15 additions and 48 deletions
+2 -4
View File
@@ -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
-42
View File
@@ -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
View File
@@ -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.