diff options
author | Tom Rondeau <tom@trondeau.com> | 2014-09-30 21:55:16 -0400 |
---|---|---|
committer | Tom Rondeau <tom@trondeau.com> | 2014-09-30 23:00:26 -0400 |
commit | fc1289aa096ce7c51f55095849739d623d0f6131 (patch) | |
tree | 5f7da8b064ff940959796efe13265d224b7f7267 /gr-blocks/lib/message_strobe_random_impl.h | |
parent | efd9bcd21d9f36fb1d85c7d3794bae3d6882feb1 (diff) |
blocks: switching last calls from boost::thread to gr::thread.
There are a few places where the threads are specifically used by boost::thread calls in the namespace. If we ever move away from using boost's threads, we might have some more specific cleanup to do, but it's not obvious how to easily abstract this further.
Addresses Issue # 706.
Diffstat (limited to 'gr-blocks/lib/message_strobe_random_impl.h')
-rw-r--r-- | gr-blocks/lib/message_strobe_random_impl.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gr-blocks/lib/message_strobe_random_impl.h b/gr-blocks/lib/message_strobe_random_impl.h index 32eddb592c..2dcaa7effa 100644 --- a/gr-blocks/lib/message_strobe_random_impl.h +++ b/gr-blocks/lib/message_strobe_random_impl.h @@ -36,7 +36,7 @@ namespace gr { class BLOCKS_API message_strobe_random_impl : public message_strobe_random { private: - boost::shared_ptr<boost::thread> d_thread; + boost::shared_ptr<gr::thread::thread> d_thread; bool d_finished; float d_mean_ms; float d_std_ms; |