X-Git-Url: https://git.novaco.in/?a=blobdiff_plain;f=src%2Futil.h;fp=src%2Futil.h;h=8a37c03b593e4c7dfe6c144df7e0e98556bd5aaf;hb=edbfc61d401c0bd9f4b85dd49d1a1e77c1b2eb02;hp=d350ed486a84803e00b0322a9f49e3d9b7be5764;hpb=257604e82a05f2f478951353d43d5ed487b9ab8f;p=novacoin.git diff --git a/src/util.h b/src/util.h index d350ed4..8a37c03 100644 --- a/src/util.h +++ b/src/util.h @@ -142,12 +142,6 @@ inline void Sleep(int64_t n) #endif - - - - - - extern std::map mapArgs; extern std::map > mapMultiArgs; extern bool fDebug; @@ -165,8 +159,6 @@ extern bool fNoListen; extern bool fLogTimestamps; extern bool fReopenDebugLog; -void RandAddSeed(); -void RandAddSeedPerfmon(); int ATTR_WARN_PRINTF(1,2) OutputDebugStringF(const char* pszFormat, ...); /* @@ -235,8 +227,6 @@ void ReadConfigFile(std::map& mapSettingsRet, std::map boost::filesystem::path GetSpecialFolderPath(int nFolder, bool fCreate = true); #endif void ShrinkDebugFile(); -int GetRandInt(int nMax); -uint64_t GetRand(uint64_t nMax); int64_t GetTime(); int64_t GetTimeMillis(); int64_t GetTimeMicros(); @@ -245,13 +235,6 @@ std::string FormatSubVersion(const std::string& name, int nClientVersion, const void runCommand(std::string strCommand); - - - - - - - inline std::string i64tostr(int64_t n) { return strprintf("%" PRId64, n); @@ -365,19 +348,6 @@ inline void PrintHex(const std::vector& vch, const char* pszForma printf(pszFormat, HexStr(vch, fSpaces).c_str()); } -inline int64_t GetPerformanceCounter() -{ - int64_t nCounter = 0; -#ifdef WIN32 - QueryPerformanceCounter((LARGE_INTEGER*)&nCounter); -#else - timeval t; - gettimeofday(&t, NULL); - nCounter = (int64_t) t.tv_sec * 1000000 + t.tv_usec; -#endif - return nCounter; -} - inline int64_t GetTimeMillis() { return (boost::posix_time::microsec_clock::universal_time() -