From 4bb71b3e25c55a28bdfd4447ec2bbb5c669a7c82 Mon Sep 17 00:00:00 2001 From: Josh Blum Date: Sun, 2 Sep 2012 18:51:25 -0700 Subject: implement logic for work_noutput_items --- lib/block_handlers.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/block_handlers.cpp') diff --git a/lib/block_handlers.cpp b/lib/block_handlers.cpp index 07237a8..be53fe6 100644 --- a/lib/block_handlers.cpp +++ b/lib/block_handlers.cpp @@ -23,7 +23,7 @@ void ElementImpl::handle_block_msg( const tsbe::TaskInterface &task_iface, const tsbe::Wax &msg ){ - std::cout << "handle_block_msg in " << name << std::endl; + //std::cout << "handle_block_msg in " << name << std::endl; //a buffer has returned from the downstream //(all interested consumers have finished with it) @@ -88,7 +88,7 @@ void ElementImpl::handle_block_msg( void ElementImpl::topology_update(const tsbe::TaskInterface &task_iface) { - std::cout << "topology_update in " << name << std::endl; + //std::cout << "topology_update in " << name << std::endl; const size_t num_inputs = task_iface.get_num_inputs(); const size_t num_outputs = task_iface.get_num_outputs(); -- cgit