From 64de8836d4924862d6cc352f250b802e346c29be Mon Sep 17 00:00:00 2001 From: Pixel Date: Fri, 6 Apr 2012 11:03:57 -0700 Subject: Improving a bit the way threaded task managers are being stopped. --- tests/test-Http.cc | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) (limited to 'tests/test-Http.cc') diff --git a/tests/test-Http.cc b/tests/test-Http.cc index 9d4d0e3..bd0ef49 100644 --- a/tests/test-Http.cc +++ b/tests/test-Http.cc @@ -146,11 +146,8 @@ void MainTask::Do() { s->stop(); - for (int i = 0; i < NTHREADS; i++) { - tms[i]->stopMe(); - tms[i]->join(); - delete tms[i]; - } + for (int i = 0; i < NTHREADS; i++) + TaskMan::stopThreadedTaskMan(tms[i]); Printer::log(M_STATUS, "Test::Http passed."); } -- cgit v1.2.3