mirror of
https://github.com/PurpleI2P/i2pd
synced 2024-11-10 00:00:29 +03:00
commit
a3ab639758
2
Queue.h
2
Queue.h
@ -118,7 +118,7 @@ namespace util
|
||||
|
||||
private:
|
||||
std::thread m_Thread;
|
||||
int running;
|
||||
volatile int running;
|
||||
};
|
||||
}
|
||||
}
|
||||
|
8
i2p.cpp
8
i2p.cpp
@ -26,8 +26,8 @@
|
||||
|
||||
|
||||
// Global
|
||||
int running = 1;
|
||||
int isDaemon;
|
||||
volatile int running = 1;
|
||||
volatile int isDaemon;
|
||||
|
||||
#ifndef _WIN32
|
||||
void handle_signal(int sig)
|
||||
@ -60,7 +60,7 @@ void handle_signal(int sig)
|
||||
int main( int argc, char* argv[] )
|
||||
{
|
||||
i2p::util::config::OptionParser(argc,argv);
|
||||
isDaemon = i2p::util::config::GetArg("-daemon", 0);
|
||||
volatile int isDaemon = i2p::util::config::GetArg("-daemon", 0);
|
||||
#ifdef _WIN32
|
||||
setlocale(LC_CTYPE, "");
|
||||
SetConsoleCP(1251);
|
||||
@ -73,7 +73,7 @@ int main( int argc, char* argv[] )
|
||||
LogPrint("data directory: ", i2p::util::filesystem::GetDataDir().string());
|
||||
i2p::util::filesystem::ReadConfigFile(i2p::util::config::mapArgs, i2p::util::config::mapMultiArgs);
|
||||
|
||||
int isLogging = i2p::util::config::GetArg("-log", 0);
|
||||
volatile int isLogging = i2p::util::config::GetArg("-log", 0);
|
||||
if (isLogging == 1)
|
||||
{
|
||||
std::string logfile = i2p::util::filesystem::GetDataDir().string();
|
||||
|
Loading…
Reference in New Issue
Block a user