diff options
Diffstat (limited to 'lib/topology_handler.cpp')
-rw-r--r-- | lib/topology_handler.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/topology_handler.cpp b/lib/topology_handler.cpp index a3d7e6a..1696f27 100644 --- a/lib/topology_handler.cpp +++ b/lib/topology_handler.cpp @@ -49,6 +49,10 @@ void BlockActor::handle_topology( this->produce_outputs.resize(num_outputs, false); if (num_inputs == 0) this->inputs_available.resize(1, true); //so its always "available" + //copy the name into the queues for debug purposes + this->input_queues.name = this->name; + this->output_queues.name = this->name; + this->input_tokens.resize(num_inputs); this->output_tokens.resize(num_outputs); this->inputs_done.resize(num_inputs); |