summaryrefslogtreecommitdiff
path: root/gnuradio-core
diff options
context:
space:
mode:
authorTom Rondeau2012-12-03 14:49:02 -0500
committerTom Rondeau2012-12-03 14:49:02 -0500
commitf334b636ed46c62b23582ed512bb07dfb51399ef (patch)
treeb32e1eb2e159a401a135443adedabe3ca225e756 /gnuradio-core
parent8ac7a172052b8175c18ba6897d612c4b2fe2720c (diff)
downloadgnuradio-f334b636ed46c62b23582ed512bb07dfb51399ef.tar.gz
gnuradio-f334b636ed46c62b23582ed512bb07dfb51399ef.tar.bz2
gnuradio-f334b636ed46c62b23582ed512bb07dfb51399ef.zip
core: the mutex is unlocked to begin with and GR doesn't seem to like us forcing it unlocked here.
Diffstat (limited to 'gnuradio-core')
-rw-r--r--gnuradio-core/src/lib/runtime/gr_basic_block.cc1
1 files changed, 0 insertions, 1 deletions
diff --git a/gnuradio-core/src/lib/runtime/gr_basic_block.cc b/gnuradio-core/src/lib/runtime/gr_basic_block.cc
index 69f2e09f9..2c77c1c0c 100644
--- a/gnuradio-core/src/lib/runtime/gr_basic_block.cc
+++ b/gnuradio-core/src/lib/runtime/gr_basic_block.cc
@@ -53,7 +53,6 @@ gr_basic_block::gr_basic_block(const std::string &name,
d_color(WHITE),
message_subscribers(pmt::pmt_make_dict())
{
- mutex.unlock();
s_ncurrently_allocated++;
}