summaryrefslogtreecommitdiff
path: root/gr-blocks/lib/delay_impl.cc
diff options
context:
space:
mode:
authorJohnathan Corgan <johnathan@corganlabs.com>2013-04-02 16:02:33 -0700
committerJohnathan Corgan <johnathan@corganlabs.com>2013-04-02 16:02:33 -0700
commiteea870b1dd9c5b90dfa7d94e6a15ffe44cfbee7f (patch)
treeaf3aa889c94cff9c503edefeaf19cb3635693bfb /gr-blocks/lib/delay_impl.cc
parente648165dcc7609524681b5eaf9620798b75b8420 (diff)
parent9acf35715fbb8aca5a991a3f41965db8f4cde683 (diff)
Merge branch 'runtime-gruel' into next
Conflicts: gnuradio-runtime/lib/CMakeLists.txt
Diffstat (limited to 'gr-blocks/lib/delay_impl.cc')
-rw-r--r--gr-blocks/lib/delay_impl.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/gr-blocks/lib/delay_impl.cc b/gr-blocks/lib/delay_impl.cc
index 67449aca20..08cd1db1c3 100644
--- a/gr-blocks/lib/delay_impl.cc
+++ b/gr-blocks/lib/delay_impl.cc
@@ -69,7 +69,7 @@ namespace gr {
// protects from quickly-repeated calls to this function that
// would end with d_delta=0.
if(d != dly()) {
- gruel::scoped_lock l(d_mutex_delay);
+ gr::thread::scoped_lock l(d_mutex_delay);
int old = dly();
set_history(d+1);
d_delta += dly() - old;
@@ -82,7 +82,7 @@ namespace gr {
gr_vector_const_void_star &input_items,
gr_vector_void_star &output_items)
{
- gruel::scoped_lock l(d_mutex_delay);
+ gr::thread::scoped_lock l(d_mutex_delay);
assert(input_items.size() == output_items.size());
const char *iptr;