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. --- tests/test-Sockets.cc | 4 ++-- tests/test-Tasks.cc | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'tests') diff --git a/tests/test-Sockets.cc b/tests/test-Sockets.cc index 0afedb1..87d557b 100644 --- a/tests/test-Sockets.cc +++ b/tests/test-Sockets.cc @@ -64,8 +64,8 @@ void MainTask::Do() { Printer::enable(M_ALL); Printer::log(M_STATUS, "Test::Sockets running."); - Events::TaskEvent evtSvr(listener = new Listener(1234)); - Events::TaskEvent evtCln(new Client); + Events::TaskEvent evtSvr(listener = Balau::createTask(new Listener(1234))); + Events::TaskEvent evtCln(Balau::createTask(new Client)); Printer::log(M_STATUS, "Created %s", listener->getName()); waitFor(&evtSvr); waitFor(&evtCln); diff --git a/tests/test-Tasks.cc b/tests/test-Tasks.cc index 2760e52..8677fb7 100644 --- a/tests/test-Tasks.cc +++ b/tests/test-Tasks.cc @@ -32,7 +32,7 @@ void MainTask::Do() { customPrinter = new CustomPrinter(); Printer::log(M_STATUS, "Test::Tasks running."); - Task * testTask = new TestTask(); + Task * testTask = Balau::createTask(new TestTask()); Events::TaskEvent taskEvt(testTask); waitFor(&taskEvt); Assert(!taskEvt.gotSignal()); -- cgit v1.2.3