diff options
author | Josh Blum | 2012-08-30 03:37:11 -0700 |
---|---|---|
committer | Josh Blum | 2012-08-30 03:37:11 -0700 |
commit | 44fb4c04d2ecda3f60fc4f7e31da64cce9ca7a6d (patch) | |
tree | 5d3763b241e51adc70b77dabecab654e8372f0d6 /lib/block_task.cpp | |
parent | b7c89402efa81c0a744e8314ad7d328d997b30be (diff) | |
download | sandhi-44fb4c04d2ecda3f60fc4f7e31da64cce9ca7a6d.tar.gz sandhi-44fb4c04d2ecda3f60fc4f7e31da64cce9ca7a6d.tar.bz2 sandhi-44fb4c04d2ecda3f60fc4f7e31da64cce9ca7a6d.zip |
use the separate block msgs/topology updates
Diffstat (limited to 'lib/block_task.cpp')
-rw-r--r-- | lib/block_task.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/block_task.cpp b/lib/block_task.cpp index d9b52f0..faf8098 100644 --- a/lib/block_task.cpp +++ b/lib/block_task.cpp @@ -83,7 +83,7 @@ void ElementImpl::handle_task(const tsbe::TaskInterface &task_iface) //-- Processing time! //------------------------------------------------------------------ - std::cout << "calling work on " << name << std::endl; + //std::cout << "calling work on " << name << std::endl; //reset work trackers for production/consumption size_t input_tokens_count = 0; @@ -135,7 +135,7 @@ void ElementImpl::handle_task(const tsbe::TaskInterface &task_iface) //start with source, this should be EZ int ret = 0; ret = block_ptr->Work(this->input_items, this->output_items); - VAR(ret); + //VAR(ret); if (ret == Block::WORK_DONE) { this->mark_done(task_iface); |