Bitcoin Core 28.0.0
P2P Digital Currency
Loading...
Searching...
No Matches
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
10struct bilingual_str;
11
12namespace util {
13class SignalInterrupt;
14} // namespace util
15
16namespace node {
17class Warnings;
18void AbortNode(util::SignalInterrupt* shutdown, std::atomic<int>& exit_status, const bilingual_str& message, node::Warnings* warnings);
19} // namespace node
20
21#endif // BITCOIN_NODE_ABORT_H
int exit_status
Manages warning messages within a node.
Definition warnings.h:40
Helper class that manages an interrupt flag, and allows a thread or signal to interrupt another threa...
void AbortNode(util::SignalInterrupt *shutdown, std::atomic< int > &exit_status, const bilingual_str &message, node::Warnings *warnings)
Definition abort.cpp:18
Bilingual messages:
Definition translation.h:18