2022-04-20 16:17:19 +02:00
|
|
|
// 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);
|
|
|
|
|
2022-12-05 12:59:15 -05:00
|
|
|
#if defined(WIN32)
|
|
|
|
std::string Win32ErrorString(int err);
|
|
|
|
#endif
|
|
|
|
|
2022-04-20 16:17:19 +02:00
|
|
|
#endif // BITCOIN_UTIL_SYSERROR_H
|