Split thread and range stuff out of utils

This commit is contained in:
Vinnie Falco
2013-05-27 10:05:49 -07:00
parent 9b5d047c90
commit 90bc0c1a8c
16 changed files with 271 additions and 128 deletions

View File

@@ -112,13 +112,13 @@ void sigIntHandler(int)
static void runAux(boost::asio::io_service& svc)
{
NameThread("aux");
setCallingThreadName("aux");
svc.run();
}
static void runIO(boost::asio::io_service& io)
{
NameThread("io");
setCallingThreadName("io");
io.run();
}