diff options
-rw-r--r-- | gnuradio-core/src/lib/runtime/gr_block_executor.cc | 4 | ||||
-rw-r--r-- | volk/Makefile.am | 2 | ||||
-rw-r--r-- | volk/include/volk/make_makefile_am.py | 1 |
3 files changed, 5 insertions, 2 deletions
diff --git a/gnuradio-core/src/lib/runtime/gr_block_executor.cc b/gnuradio-core/src/lib/runtime/gr_block_executor.cc index a8d0bc1c8..1c1aded3c 100644 --- a/gnuradio-core/src/lib/runtime/gr_block_executor.cc +++ b/gnuradio-core/src/lib/runtime/gr_block_executor.cc @@ -365,6 +365,10 @@ gr_block_executor::run_one_iteration() setup_call_to_work: + //!!!! Here is where you put the logic to work in place !!!!// + if(m->name() == std::string("test")) std::cout << "WAT" << std::endl; + else std::cout << m->name() << std::endl; + d->d_produce_or = 0; for (int i = 0; i < d->noutputs (); i++) d_output_items[i] = d->output(i)->write_pointer(); diff --git a/volk/Makefile.am b/volk/Makefile.am index 03c5aac35..cf55c76fa 100644 --- a/volk/Makefile.am +++ b/volk/Makefile.am @@ -23,7 +23,7 @@ ACLOCAL_AMFLAGS = -I config include $(top_srcdir)/Makefile.common -EXTRA_DIST = bootstrap configure config.h.in volk_config.h +EXTRA_DIST = bootstrap configure config.h.in SUBDIRS = config if LV_HAVE_ORC SUBDIRS += orc diff --git a/volk/include/volk/make_makefile_am.py b/volk/include/volk/make_makefile_am.py index af4467f37..2ff492b34 100644 --- a/volk/include/volk/make_makefile_am.py +++ b/volk/include/volk/make_makefile_am.py @@ -35,7 +35,6 @@ lib_LTLIBRARIES = \ EXTRA_DIST = \ volk_rank_archs.h \ - volk_proccpu_sim.c \ gcc_x86_cpuid.h # ---------------------------------------------------------------- |