summaryrefslogtreecommitdiff
path: root/lib/block_handlers.cpp
diff options
context:
space:
mode:
authorJosh Blum2012-10-13 13:22:18 -0700
committerJosh Blum2012-10-13 13:22:18 -0700
commit8354c9c4c92687904cedae0b0feb702c2d7e8408 (patch)
tree4c063baf0dfa3a06a6f090b2346b593babaa2efb /lib/block_handlers.cpp
parentf9c854d3cdd0a9337b41842d15a13d6df4ece408 (diff)
downloadsandhi-8354c9c4c92687904cedae0b0feb702c2d7e8408.tar.gz
sandhi-8354c9c4c92687904cedae0b0feb702c2d7e8408.tar.bz2
sandhi-8354c9c4c92687904cedae0b0feb702c2d7e8408.zip
lots of mini tweaks for QA passing, WIP...
Diffstat (limited to 'lib/block_handlers.cpp')
-rw-r--r--lib/block_handlers.cpp16
1 files changed, 0 insertions, 16 deletions
diff --git a/lib/block_handlers.cpp b/lib/block_handlers.cpp
index 2c14643..c9b289b 100644
--- a/lib/block_handlers.cpp
+++ b/lib/block_handlers.cpp
@@ -27,12 +27,6 @@ void BlockActor::handle_top_active(
){
MESSAGE_TRACER();
- if (this->block_state == BLOCK_STATE_DONE)
- {
- this->Send(0, from); //ACK
- return;
- }
-
if (this->block_state != BLOCK_STATE_LIVE)
{
this->block_ptr->start();
@@ -50,10 +44,6 @@ void BlockActor::handle_top_inert(
){
MESSAGE_TRACER();
- if (this->block_state != BLOCK_STATE_DONE)
- {
- this->block_ptr->stop();
- }
this->mark_done();
this->Send(0, from); //ACK
@@ -65,12 +55,6 @@ void BlockActor::handle_top_token(
){
MESSAGE_TRACER();
- if (this->block_state == BLOCK_STATE_DONE)
- {
- this->Send(0, from); //ACK
- return;
- }
-
//create input tokens and send allocation hints
for (size_t i = 0; i < this->get_num_inputs(); i++)
{