diff options
Diffstat (limited to 'gnuradio-runtime/lib/scheduler_tpb.cc')
-rw-r--r-- | gnuradio-runtime/lib/scheduler_tpb.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gnuradio-runtime/lib/scheduler_tpb.cc b/gnuradio-runtime/lib/scheduler_tpb.cc index 2fe9e10f6a..0319a43a88 100644 --- a/gnuradio-runtime/lib/scheduler_tpb.cc +++ b/gnuradio-runtime/lib/scheduler_tpb.cc @@ -29,7 +29,7 @@ #include <sstream> namespace gr { - + class tpb_container { block_sptr d_block; @@ -56,7 +56,7 @@ namespace gr { : scheduler(ffg, max_noutput_items) { int block_max_noutput_items; - + // Get a topologically sorted vector of all the blocks in use. // Being topologically sorted probably isn't going to matter, but // there's a non-zero chance it might help... @@ -84,7 +84,7 @@ namespace gr { else { block_max_noutput_items = max_noutput_items; } - + d_threads.create_thread( gr::thread::thread_body_wrapper<tpb_container> (tpb_container(blocks[i], block_max_noutput_items), |