diff options
Diffstat (limited to 'gnuradio-runtime/lib/scheduler_tpb.h')
-rw-r--r-- | gnuradio-runtime/lib/scheduler_tpb.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/gnuradio-runtime/lib/scheduler_tpb.h b/gnuradio-runtime/lib/scheduler_tpb.h index 152b11c8f3..35e8c557da 100644 --- a/gnuradio-runtime/lib/scheduler_tpb.h +++ b/gnuradio-runtime/lib/scheduler_tpb.h @@ -42,10 +42,12 @@ protected: * The scheduler will continue running until all blocks until they * report that they are done or the stop method is called. */ - scheduler_tpb(flat_flowgraph_sptr ffg, int max_noutput_items); + scheduler_tpb(flat_flowgraph_sptr ffg, int max_noutput_items, bool catch_exceptions); public: - static scheduler_sptr make(flat_flowgraph_sptr ffg, int max_noutput_items = 100000); + static scheduler_sptr make(flat_flowgraph_sptr ffg, + int max_noutput_items = 100000, + bool catch_exceptions = true); ~scheduler_tpb(); |