Bitcoin Core  27.99.0
P2P Digital Currency
abort.h
Go to the documentation of this file.
1 // Copyright (c) 2023 The Bitcoin Core developers
2 // Distributed under the MIT software license, see the accompanying
3 // file COPYING or http://www.opensource.org/licenses/mit-license.php.
4 
5 #ifndef BITCOIN_NODE_ABORT_H
6 #define BITCOIN_NODE_ABORT_H
7 
8 #include <atomic>
9 
10 struct bilingual_str;
11 
12 namespace util {
13 class SignalInterrupt;
14 } // namespace util
15 
16 namespace node {
17 void AbortNode(util::SignalInterrupt* shutdown, std::atomic<int>& exit_status, const bilingual_str& message);
18 } // namespace node
19 
20 #endif // BITCOIN_NODE_ABORT_H
int exit_status
Helper class that manages an interrupt flag, and allows a thread or signal to interrupt another threa...
Definition: init.h:25
void AbortNode(util::SignalInterrupt *shutdown, std::atomic< int > &exit_status, const bilingual_str &message)
Definition: abort.cpp:19
Bilingual messages:
Definition: translation.h:18