mirror of
https://github.com/dashpay/dash.git
synced 2024-12-26 04:22:55 +01:00
4cd32e43e4
1fabd59e7 Break circular dependency: init -> * -> init by extracting shutdown.h (Ben Woosley) e62fdfeea Drop unused init.h includes (Ben Woosley) Pull request description: Most includers just wanted to react to pending shutdown. This isolates access to `fRequestShutdown` and limits access to the shutdown api functions, including the new `CancelShutdown` for setting it to `false`. Tree-SHA512: df42f75dfbba163576710e9a67cf1228531fd99d70a2f187bfba0bcc476d6749cf88180a97e66a81bb5b6c3c7f0917de7402d26039ba7b644cb7509b02f7e267
16 lines
418 B
C
16 lines
418 B
C
// Copyright (c) 2009-2010 Satoshi Nakamoto
|
|
// Copyright (c) 2009-2018 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_SHUTDOWN_H
|
|
#define BITCOIN_SHUTDOWN_H
|
|
|
|
void StartShutdown();
|
|
void StartRestart();
|
|
void AbortShutdown();
|
|
bool ShutdownRequested();
|
|
bool RestartRequested();
|
|
|
|
#endif
|