diff options
| author | Gregory Maxwell <[email protected]> | 2015-11-13 11:29:33 -0800 |
|---|---|---|
| committer | Gregory Maxwell <[email protected]> | 2015-11-13 11:30:00 -0800 |
| commit | dbd2c135ddb96bdc3a4e870c2371cb1fac227135 (patch) | |
| tree | d37ef356cf90aaa62b4a107c9f9065c62728ee9e /src/httpserver.h | |
| parent | Merge pull request #7007 (diff) | |
| parent | http: speed up shutdown (diff) | |
| download | discoin-dbd2c135ddb96bdc3a4e870c2371cb1fac227135.tar.xz discoin-dbd2c135ddb96bdc3a4e870c2371cb1fac227135.zip | |
Merge pull request #6990
a264c32 http: speed up shutdown (Wladimir J. van der Laan)
Diffstat (limited to 'src/httpserver.h')
| -rw-r--r-- | src/httpserver.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/httpserver.h b/src/httpserver.h index b377dc19f..20a119cc5 100644 --- a/src/httpserver.h +++ b/src/httpserver.h @@ -28,7 +28,7 @@ bool InitHTTPServer(); * This is separate from InitHTTPServer to give users race-condition-free time * to register their handlers between InitHTTPServer and StartHTTPServer. */ -bool StartHTTPServer(boost::thread_group& threadGroup); +bool StartHTTPServer(); /** Interrupt HTTP server threads */ void InterruptHTTPServer(); /** Stop HTTP server */ |