Browse Source

Daemon::run

pull/405/head
orignal 9 years ago
parent
commit
4b0d587fe1
  1. 7
      Daemon.h
  2. 9
      DaemonLinux.cpp
  3. 8
      i2pd.cpp

7
Daemon.h

@ -20,6 +20,7 @@ namespace i2p @@ -20,6 +20,7 @@ namespace i2p
virtual bool init(int argc, char* argv[]);
virtual bool start();
virtual bool stop();
virtual void run () {};
bool isLogging;
bool isDaemon;
@ -61,8 +62,10 @@ namespace i2p @@ -61,8 +62,10 @@ namespace i2p
return instance;
}
virtual bool start();
virtual bool stop();
bool start();
bool stop();
; void run ();
private:
std::string pidfile;
int pidFH;

9
DaemonLinux.cpp

@ -4,6 +4,7 @@ @@ -4,6 +4,7 @@
#include <signal.h>
#include <stdlib.h>
#include <thread>
#include <unistd.h>
#include <fcntl.h>
#include <sys/stat.h>
@ -118,6 +119,14 @@ namespace i2p @@ -118,6 +119,14 @@ namespace i2p
return Daemon_Singleton::stop();
}
void DaemonLinux::run ()
{
while (running)
{
std::this_thread::sleep_for (std::chrono::seconds(1));
}
}
}
}

8
i2pd.cpp

@ -1,4 +1,3 @@ @@ -1,4 +1,3 @@
#include <thread>
#include <stdlib.h>
#include "Daemon.h"
@ -6,12 +5,7 @@ int main( int argc, char* argv[] ) @@ -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;
}

Loading…
Cancel
Save