summaryrefslogtreecommitdiff
path: root/lib/block_actor.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'lib/block_actor.cpp')
-rw-r--r--lib/block_actor.cpp7
1 files changed, 0 insertions, 7 deletions
diff --git a/lib/block_actor.cpp b/lib/block_actor.cpp
index 19f8f97..5b1c5db 100644
--- a/lib/block_actor.cpp
+++ b/lib/block_actor.cpp
@@ -88,16 +88,9 @@ BlockActor::BlockActor(void):
active_thread_pool.reset(); //actors hold this, now its safe to reset, weak_framework only
}
this->register_handlers();
- this->handle_task_count = 0;
- this->work_count = 0;
}
BlockActor::~BlockActor(void)
{
this->mark_done();
- #ifdef WORK_COUNTS
- if (work_count == 0) std::cerr << "\n WORK FAIL!!!" << std::endl;
- std::cerr << name << " handle_task_count " << handle_task_count << std::endl;
- std::cerr << name << " work_count " << work_count << std::endl;
- #endif
}