![]() |
Bitcoin ABC 0.32.4
P2P Digital Currency
|
Go to the source code of this file.
Functions | |
| void | StartShutdown () |
| Request shutdown of the application. More... | |
| void | AbortShutdown () |
| Clear shutdown flag. More... | |
| bool | ShutdownRequested () |
| Returns true if a shutdown is requested, false otherwise. More... | |
| void | WaitForShutdown () |
| Wait for StartShutdown to be called in any thread. More... | |
| void AbortShutdown | ( | ) |
Clear shutdown flag.
Only use this during init (before calling WaitForShutdown in any thread), or in the unit tests. Calling it in other circumstances will cause a race condition.
Definition at line 25 of file shutdown.cpp.
| bool ShutdownRequested | ( | ) |
Returns true if a shutdown is requested, false otherwise.
Definition at line 29 of file shutdown.cpp.
| void StartShutdown | ( | ) |
Request shutdown of the application.
Definition at line 16 of file shutdown.cpp.
| void WaitForShutdown | ( | ) |
Wait for StartShutdown to be called in any thread.
This can only be used from a single thread.
Definition at line 33 of file shutdown.cpp.