mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-01-27 03:33:27 -03:00
c95a4432d7
Only raw errno codes are logged if FileCommit fails. These are implementation-specific, so it makes it harder to debug based on user reports. Instead, use SysErrorString to display both the raw int value and the descriptive message.
20 lines
600 B
C++
20 lines
600 B
C++
// Copyright (c) 2010-2022 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_UTIL_SYSERROR_H
|
|
#define BITCOIN_UTIL_SYSERROR_H
|
|
|
|
#include <string>
|
|
|
|
/** Return system error string from errno value. Use this instead of
|
|
* std::strerror, which is not thread-safe. For network errors use
|
|
* NetworkErrorString from sock.h instead.
|
|
*/
|
|
std::string SysErrorString(int err);
|
|
|
|
#if defined(WIN32)
|
|
std::string Win32ErrorString(int err);
|
|
#endif
|
|
|
|
#endif // BITCOIN_UTIL_SYSERROR_H
|