diff options
author | Josh Blum | 2012-11-08 00:10:26 -0800 |
---|---|---|
committer | Josh Blum | 2012-11-08 00:10:26 -0800 |
commit | d1d9b98d31d17b9c7b8b80105de890c287ccf96e (patch) | |
tree | 26944b48f8eb758fe5ecaaa41a5bcb9e7db6d495 /lib | |
parent | 4e6548ed237f3d6eda4383d6a07a4d1e99f404f6 (diff) | |
download | sandhi-d1d9b98d31d17b9c7b8b80105de890c287ccf96e.tar.gz sandhi-d1d9b98d31d17b9c7b8b80105de890c287ccf96e.tar.bz2 sandhi-d1d9b98d31d17b9c7b8b80105de890c287ccf96e.zip |
lot of python locking hell...
Diffstat (limited to 'lib')
-rw-r--r-- | lib/top_block.cpp | 2 | ||||
-rw-r--r-- | lib/topology_handler.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/top_block.cpp b/lib/top_block.cpp index c321612..f5fb1a4 100644 --- a/lib/top_block.cpp +++ b/lib/top_block.cpp @@ -47,7 +47,7 @@ TopBlock::TopBlock(const std::string &name): void ElementImpl::top_block_cleanup(void) { this->executor->post_all(TopInertMessage()); - this->topology->clear_all();; + this->topology->clear_all(); this->executor->commit(); if (ARMAGEDDON) std::cerr << "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n" diff --git a/lib/topology_handler.cpp b/lib/topology_handler.cpp index 9a1f243..1a19a38 100644 --- a/lib/topology_handler.cpp +++ b/lib/topology_handler.cpp @@ -51,7 +51,7 @@ void BlockActor::handle_topology( const size_t num_inputs = this->get_num_inputs(); const size_t num_outputs = this->get_num_outputs(); - //call check_topology on block before committing settings + //call notify_topology on block before committing settings this->block_ptr->notify_topology(num_inputs, num_outputs); //fill the item sizes from the IO signatures |