diff options
| author | Jeff Garzik <[email protected]> | 2012-09-04 08:53:05 -0700 |
|---|---|---|
| committer | Jeff Garzik <[email protected]> | 2012-09-04 08:53:05 -0700 |
| commit | 8c7b6c05db007aa8825aa3d366685fcaa9c0be44 (patch) | |
| tree | 4b1090a9e2dd0ff118af6813a874dfa9991225cc /src/bitcoinrpc.cpp | |
| parent | Merge pull request #1743 from xanatos/patch-14 (diff) | |
| parent | Rename CreateThread to NewThread (diff) | |
| download | discoin-8c7b6c05db007aa8825aa3d366685fcaa9c0be44.tar.xz discoin-8c7b6c05db007aa8825aa3d366685fcaa9c0be44.zip | |
Merge pull request #1738 from laanwj/2012_08_boostthread
implement CreateThread with boost::thread
Diffstat (limited to 'src/bitcoinrpc.cpp')
| -rw-r--r-- | src/bitcoinrpc.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bitcoinrpc.cpp b/src/bitcoinrpc.cpp index 2271ff07c..84a6d6f89 100644 --- a/src/bitcoinrpc.cpp +++ b/src/bitcoinrpc.cpp @@ -697,7 +697,7 @@ static void RPCAcceptHandler(boost::shared_ptr< basic_socket_acceptor<Protocol, } // start HTTP client thread - else if (!CreateThread(ThreadRPCServer3, conn)) { + else if (!NewThread(ThreadRPCServer3, conn)) { printf("Failed to create RPC server client thread\n"); delete conn; } |