aboutsummaryrefslogtreecommitdiff
path: root/src/init.cpp
diff options
context:
space:
mode:
authorMarko Bencun <marko.bencun@monetas.net>2017-02-23 16:38:41 +0900
committerMarko Bencun <marko.bencun@monetas.net>2017-02-24 09:19:29 +0900
commitef9f495e931fad1e356757d6a40092596aa0205c (patch)
tree620db571adbb0231123807bf49170504fed38e3f /src/init.cpp
parent692c9eddba67d5a7ceb85fa4b2632f664c68f418 (diff)
downloadbitcoin-ef9f495e931fad1e356757d6a40092596aa0205c.tar.xz
Trivial: fix comments referencing AppInit2
It was refactored into multiple functions in 0cc8b6bc44bea29e24fa4e13d8a9bbe4f1483680.
Diffstat (limited to 'src/init.cpp')
-rw-r--r--src/init.cpp6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/init.cpp b/src/init.cpp
index cf265180ff..196b840cb7 100644
--- a/src/init.cpp
+++ b/src/init.cpp
@@ -118,10 +118,6 @@ static const char* FEE_ESTIMATES_FILENAME="fee_estimates.dat";
// threads that should only be stopped after the main network-processing
// threads have exited.
//
-// Note that if running -daemon the parent process returns from AppInit2
-// before adding any threads to the threadGroup, so .join_all() returns
-// immediately and the parent exits from main().
-//
// Shutdown for Qt is very similar, only it uses a QTimer to detect
// fRequestShutdown getting set, and then does the normal Qt
// shutdown thing.
@@ -188,7 +184,7 @@ void Shutdown()
if (!lockShutdown)
return;
- /// Note: Shutdown() must be able to handle cases in which AppInit2() failed part of the way,
+ /// Note: Shutdown() must be able to handle cases in which initialization failed part of the way,
/// for example if the data directory was found to be locked.
/// Be sure that anything that writes files or flushes caches only does this if the respective
/// module was initialized.