summaryrefslogtreecommitdiff
path: root/lib/block_actor.cpp
diff options
context:
space:
mode:
authorJosh Blum2013-02-12 21:43:27 -0800
committerJosh Blum2013-02-17 20:53:28 -0600
commit9191fbce9f4d161e4f871231469ef009c86f177f (patch)
treec03be55bdd4047db0b82d550d0f6c4bb38cec1ec /lib/block_actor.cpp
parent93afc6bff6ce58c08d8ae4b1509f682a05a9c59d (diff)
downloadsandhi-9191fbce9f4d161e4f871231469ef009c86f177f.tar.gz
sandhi-9191fbce9f4d161e4f871231469ef009c86f177f.tar.bz2
sandhi-9191fbce9f4d161e4f871231469ef009c86f177f.zip
gras: working on block stats
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
}