diff options
Diffstat (limited to 'gnuradio-core/src/lib')
4 files changed, 4 insertions, 4 deletions
diff --git a/gnuradio-core/src/lib/runtime/gr_hier_block2.cc b/gnuradio-core/src/lib/runtime/gr_hier_block2.cc index 9811b9def..fc74ff431 100644 --- a/gnuradio-core/src/lib/runtime/gr_hier_block2.cc +++ b/gnuradio-core/src/lib/runtime/gr_hier_block2.cc @@ -29,7 +29,7 @@ #include <gr_hier_block2_detail.h> #include <iostream> -#define GR_HIER_BLOCK2_DEBUG 1 +#define GR_HIER_BLOCK2_DEBUG 0 gr_hier_block2_sptr gr_make_hier_block2(const std::string &name, gr_io_signature_sptr input_signature, diff --git a/gnuradio-core/src/lib/runtime/gr_hier_block2_detail.cc b/gnuradio-core/src/lib/runtime/gr_hier_block2_detail.cc index 307cbabeb..4fefed28b 100644 --- a/gnuradio-core/src/lib/runtime/gr_hier_block2_detail.cc +++ b/gnuradio-core/src/lib/runtime/gr_hier_block2_detail.cc @@ -30,7 +30,7 @@ #include <stdexcept> #include <iostream> -#define GR_HIER_BLOCK2_DETAIL_DEBUG 1 +#define GR_HIER_BLOCK2_DETAIL_DEBUG 0 gr_hier_block2_detail::gr_hier_block2_detail(gr_hier_block2 *owner) : d_owner(owner), diff --git a/gnuradio-core/src/lib/runtime/gr_runtime_impl.cc b/gnuradio-core/src/lib/runtime/gr_runtime_impl.cc index 54fc7d19a..e792774b9 100644 --- a/gnuradio-core/src/lib/runtime/gr_runtime_impl.cc +++ b/gnuradio-core/src/lib/runtime/gr_runtime_impl.cc @@ -38,7 +38,7 @@ #include <stdexcept> #include <iostream> -#define GR_RUNTIME_IMPL_DEBUG 1 +#define GR_RUNTIME_IMPL_DEBUG 0 static gr_runtime_impl *s_runtime = 0; diff --git a/gnuradio-core/src/lib/runtime/gr_simple_flowgraph_detail.cc b/gnuradio-core/src/lib/runtime/gr_simple_flowgraph_detail.cc index a725adb6e..432cde0ae 100644 --- a/gnuradio-core/src/lib/runtime/gr_simple_flowgraph_detail.cc +++ b/gnuradio-core/src/lib/runtime/gr_simple_flowgraph_detail.cc @@ -33,7 +33,7 @@ #include <stdexcept> #include <map> -#define GR_SIMPLE_FLOWGRAPH_DETAIL_DEBUG 1 +#define GR_SIMPLE_FLOWGRAPH_DETAIL_DEBUG 0 gr_edge_sptr gr_make_edge(const gr_endpoint &src, const gr_endpoint &dst) |