Daemon::run

This commit is contained in:
orignal 2016-03-08 15:02:32 -05:00
parent ebd356c7bd
commit 4b0d587fe1
3 changed files with 15 additions and 9 deletions

View file

@ -1,4 +1,3 @@
#include <thread>
#include <stdlib.h>
#include "Daemon.h"
@ -6,12 +5,7 @@ int main( int argc, char* argv[] )
{
Daemon.init(argc, argv);
if (Daemon.start())
{
while (Daemon.running)
{
std::this_thread::sleep_for (std::chrono::seconds(1));
}
}
Daemon.run ();
Daemon.stop();
return EXIT_SUCCESS;
}