0
0
mirror of https://github.com/PurpleI2P/i2pd synced 2025-10-05 23:52:50 +02:00

renamed DaemonLinux to DaemonUnix

This commit is contained in:
orignal
2025-09-11 18:44:25 -04:00
parent 1624f42cfe
commit 0f279017a2
2 changed files with 10 additions and 10 deletions

View File

@@ -1,5 +1,5 @@
/*
* Copyright (c) 2013-2020, The PurpleI2P Project
* Copyright (c) 2013-2025, The PurpleI2P Project
*
* This file is part of Purple i2pd project and licensed under BSD3
*
@@ -97,15 +97,15 @@ namespace util
return instance;
}
};
#else
#define Daemon i2p::util::DaemonLinux::Instance()
class DaemonLinux : public Daemon_Singleton
#else // Unix-like systems, including Linux
#define Daemon i2p::util::DaemonUnix::Instance()
class DaemonUnix : public Daemon_Singleton
{
public:
static DaemonLinux& Instance()
static DaemonUnix& Instance()
{
static DaemonLinux instance;
static DaemonUnix instance;
return instance;
}

View File

@@ -1,5 +1,5 @@
/*
* Copyright (c) 2013-2024, The PurpleI2P Project
* Copyright (c) 2013-2025, The PurpleI2P Project
*
* This file is part of Purple i2pd project and licensed under BSD3
*
@@ -71,7 +71,7 @@ namespace i2p
{
namespace util
{
bool DaemonLinux::start()
bool DaemonUnix::start()
{
if (isDaemon)
{
@@ -213,13 +213,13 @@ namespace i2p
return Daemon_Singleton::start();
}
bool DaemonLinux::stop()
bool DaemonUnix::stop()
{
i2p::fs::Remove(pidfile);
return Daemon_Singleton::stop();
}
void DaemonLinux::run ()
void DaemonUnix::run ()
{
i2p::util::SetThreadName ("i2pd-daemon");
while (running)