From 1d796e6cf639354614f1152baab65d317271c357 Mon Sep 17 00:00:00 2001 From: Pixel Date: Wed, 16 Nov 2011 17:26:28 -0800 Subject: Kind of a big revamp of the TaskMan / Task model, in order to introduce a TaskScheduler. The idea is that we need to support multiple task managers from multiple threads. So that revamp means we now should be able to support that, except the TaskScheduler needs to implement a round robin system, to distribute tasks across multiple task managers. But at least, the fundamental redesign to permit this is here. --- src/Handle.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/Handle.cc') diff --git a/src/Handle.cc b/src/Handle.cc index 839c58a..b8dd45e 100644 --- a/src/Handle.cc +++ b/src/Handle.cc @@ -43,7 +43,7 @@ void eioInterface::readyCB(ev::async & w, int revents) { void eioInterface::doStart() { Balau::Printer::elog(Balau::E_HANDLE, "Starting the eio interface"); - Balau::TaskMan * taskMan = Balau::TaskMan::getTaskMan(); + Balau::TaskMan * taskMan = Balau::TaskMan::getDefaultTaskMan(); Assert(taskMan); struct ev_loop * loop = taskMan->getLoop(); -- cgit v1.2.3