summaryrefslogtreecommitdiff
path: root/lib/gras_impl/interruptible_thread.hpp
diff options
context:
space:
mode:
authorJosh Blum2012-10-28 22:39:39 -0700
committerJosh Blum2012-10-28 22:39:39 -0700
commit77f79c8e2c45d816a2ecb869b2869825b3293640 (patch)
tree888dfa430241024e0dd47248aa14a8a09394d469 /lib/gras_impl/interruptible_thread.hpp
parent9620afa87986645653b171fb2c74c06597edb382 (diff)
downloadsandhi-77f79c8e2c45d816a2ecb869b2869825b3293640.tar.gz
sandhi-77f79c8e2c45d816a2ecb869b2869825b3293640.tar.bz2
sandhi-77f79c8e2c45d816a2ecb869b2869825b3293640.zip
work on stand-alone library build
Diffstat (limited to 'lib/gras_impl/interruptible_thread.hpp')
-rw-r--r--lib/gras_impl/interruptible_thread.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/gras_impl/interruptible_thread.hpp b/lib/gras_impl/interruptible_thread.hpp
index 1cb9b64..5af9369 100644
--- a/lib/gras_impl/interruptible_thread.hpp
+++ b/lib/gras_impl/interruptible_thread.hpp
@@ -32,7 +32,7 @@
/*!
* This is the only place you will find any threading stuff.
- * The entire point here is that the source's in gnuradio
+ * The entire point here is that the source's in gras
* are sometimed bad and block forever (the author is guilty too).
* This thread pool creates an interruptible thread to perform work.
* Everything is nice and synchronous with the block actor.
@@ -40,7 +40,7 @@
* However, this will be interrupted and not block forever,
* when the executor is told to stop/interrupt and wait/join.
*/
-namespace gnuradio
+namespace gras
{
typedef boost::shared_ptr<boost::thread_group> SharedThreadGroup;
@@ -138,6 +138,6 @@ namespace gnuradio
boost::thread *_thread;
};
-} //namespace gnuradio
+} //namespace gras
#endif /*INCLUDED_LIBGRAS_IMPL_INTERRUPTIBLE_THREAD_HPP*/