/
githubmirror
/
bitcoin
Обзор
Документация
Войти
/
githubmirror
/
bitcoin
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/common/system.h
40 строк
1 KB
MarcoFalke
refactor: Remove unused #include in common/system
04 авг 2026, 23:22
04 авг 2026, 23:22
fa7304f
Код
Авторство
О чём код?
// Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-present The Bitcoin Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef BITCOIN_COMMON_SYSTEM_H #define BITCOIN_COMMON_SYSTEM_H #include <bitcoin-build-config.h> // IWYU pragma: keep #include <util/time.h> #include <cstdint> #include <optional> #include <string> /// Monotonic uptime (not affected by system time changes). SteadyClock::duration GetUptime(); void SetupEnvironment(); [[nodiscard]] bool SetupNetworking(); #ifndef WIN32 std::string ShellEscape(const std::string& arg); #endif #if HAVE_SYSTEM void runCommand(const std::string& strCommand); #endif /** * Return the number of cores available on the current system. * @note This does count virtual cores, such as those provided by HyperThreading. */ int GetNumCores(); /** * Return the total RAM available on the current system, if detectable. */ std::optional<uint64_t> TryGetTotalRam(); #endif // BITCOIN_COMMON_SYSTEM_H