mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-11-11 22:50:59 +01:00
build: prepare to move DetectShutdownThread
This commit is contained in:
@@ -123,13 +123,15 @@ void Shutdown()
|
|||||||
//
|
//
|
||||||
void DetectShutdownThread(boost::thread_group* threadGroup)
|
void DetectShutdownThread(boost::thread_group* threadGroup)
|
||||||
{
|
{
|
||||||
|
bool shutdown = ShutdownRequested();
|
||||||
// Tell the main threads to shutdown.
|
// Tell the main threads to shutdown.
|
||||||
while (!fRequestShutdown)
|
while (!shutdown)
|
||||||
{
|
{
|
||||||
MilliSleep(200);
|
MilliSleep(200);
|
||||||
if (fRequestShutdown)
|
shutdown = ShutdownRequested();
|
||||||
threadGroup->interrupt_all();
|
|
||||||
}
|
}
|
||||||
|
if (threadGroup)
|
||||||
|
threadGroup->interrupt_all();
|
||||||
}
|
}
|
||||||
|
|
||||||
void HandleSIGTERM(int)
|
void HandleSIGTERM(int)
|
||||||
|
|||||||
Reference in New Issue
Block a user