summaryrefslogtreecommitdiff
path: root/gr-blocks/lib/message_debug_impl.h
diff options
context:
space:
mode:
authorTom Rondeau <trondeau@vt.edu>2013-03-29 17:31:06 -0400
committerJohnathan Corgan <johnathan@corganlabs.com>2013-04-01 16:23:06 -0700
commitf74d3dae8f2ec423c61932b4ad0359f98b996a51 (patch)
tree1e16eb3537829248c177b04209acce3fe2bead96 /gr-blocks/lib/message_debug_impl.h
parenteea0e411411303ea94953c5cd8454c4139a474ff (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 'gr-blocks/lib/message_debug_impl.h')
-rw-r--r--gr-blocks/lib/message_debug_impl.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/gr-blocks/lib/message_debug_impl.h b/gr-blocks/lib/message_debug_impl.h
index c9d82bd561..817a9a834c 100644
--- a/gr-blocks/lib/message_debug_impl.h
+++ b/gr-blocks/lib/message_debug_impl.h
@@ -25,8 +25,8 @@
#include <blocks/message_debug.h>
#include <gr_block.h>
-#include <gruel/thread.h>
-#include <gruel/pmt.h>
+#include <thread/thread.h>
+#include <pmt/pmt.h>
namespace gr {
namespace blocks {
@@ -72,7 +72,7 @@ namespace gr {
*/
void store(pmt::pmt_t msg);
- gruel::mutex d_mutex;
+ gr::thread::mutex d_mutex;
std::vector<pmt::pmt_t> d_messages;
public: