Rename reportUncaughtExceptions to threadEntry

This commit is contained in:
seelabs
2016-07-05 14:48:37 -04:00
parent b72724a4a4
commit c9d8fa9e96
15 changed files with 40 additions and 40 deletions

View File

@@ -20,7 +20,7 @@
#include <BeastConfig.h>
#include <ripple/app/main/BasicApp.h>
#include <ripple/beast/core/Thread.h>
#include <ripple/core/ReportUncaughtException.h>
#include <ripple/core/ThreadEntry.h>
BasicApp::BasicApp(std::size_t numberOfThreads)
{
@@ -34,7 +34,7 @@ BasicApp::BasicApp(std::size_t numberOfThreads)
std::string("io_service #") +
std::to_string(numberOfThreads));
ripple::reportUncaughtException (&io_service_,
ripple::threadEntry (&io_service_,
&boost::asio::io_service::run,
"io_service::run");
});