diff options
author | Tom Rondeau <trondeau@vt.edu> | 2013-03-29 17:31:06 -0400 |
---|---|---|
committer | Johnathan Corgan <johnathan@corganlabs.com> | 2013-04-01 16:23:06 -0700 |
commit | f74d3dae8f2ec423c61932b4ad0359f98b996a51 (patch) | |
tree | 1e16eb3537829248c177b04209acce3fe2bead96 /gnuradio-runtime/lib/gr_top_block_impl.h | |
parent | eea0e411411303ea94953c5cd8454c4139a474ff (diff) |
gruel: moved gruel into subdirs of gnuradio-runtime.
PMTs are handled slightly different and are installed into their own module and include dir.
Diffstat (limited to 'gnuradio-runtime/lib/gr_top_block_impl.h')
-rw-r--r-- | gnuradio-runtime/lib/gr_top_block_impl.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnuradio-runtime/lib/gr_top_block_impl.h b/gnuradio-runtime/lib/gr_top_block_impl.h index 7293531090..345a33152f 100644 --- a/gnuradio-runtime/lib/gr_top_block_impl.h +++ b/gnuradio-runtime/lib/gr_top_block_impl.h @@ -25,7 +25,7 @@ #include <gr_runtime_api.h> #include <gr_scheduler.h> -#include <gruel/thread.h> +#include <thread/thread.h> /*! *\brief Abstract implementation details of gr_top_block @@ -76,7 +76,7 @@ protected: gr_flat_flowgraph_sptr d_ffg; gr_scheduler_sptr d_scheduler; - gruel::mutex d_mutex; // protects d_state and d_lock_count + gr::thread::mutex d_mutex; // protects d_state and d_lock_count tb_state d_state; int d_lock_count; int d_max_noutput_items; |