summaryrefslogtreecommitdiff
path: root/gnuradio-runtime
diff options
context:
space:
mode:
authorTom Rondeau <trondeau@vt.edu>2013-06-15 17:16:18 -0400
committerTom Rondeau <trondeau@vt.edu>2013-06-15 17:16:18 -0400
commitd9062de985924f171382156320f726281b5e252e (patch)
tree03a16827ce3692ce1109f3ebbcf469a4c741fef5 /gnuradio-runtime
parent91e22a93821db1efc8916d47b34760220ce1bece (diff)
runtime: removing mutex locks; broke other things more important than what it fixed.
Diffstat (limited to 'gnuradio-runtime')
-rw-r--r--gnuradio-runtime/lib/vmcircbuf_sysv_shm.cc4
1 files changed, 0 insertions, 4 deletions
diff --git a/gnuradio-runtime/lib/vmcircbuf_sysv_shm.cc b/gnuradio-runtime/lib/vmcircbuf_sysv_shm.cc
index 484b1a914..0d7e9b7d3 100644
--- a/gnuradio-runtime/lib/vmcircbuf_sysv_shm.cc
+++ b/gnuradio-runtime/lib/vmcircbuf_sysv_shm.cc
@@ -46,8 +46,6 @@ namespace gr {
vmcircbuf_sysv_shm::vmcircbuf_sysv_shm(int size)
: gr::vmcircbuf(size)
{
- gr::thread::scoped_lock guard(s_vm_mutex);
-
#if !defined(HAVE_SYS_SHM_H)
fprintf(stderr, "gr::vmcircbuf_sysv_shm: sysv shared memory is not available\n");
throw std::runtime_error("gr::vmcircbuf_sysv_shm");
@@ -152,8 +150,6 @@ namespace gr {
vmcircbuf_sysv_shm::~vmcircbuf_sysv_shm()
{
- gr::thread::scoped_lock guard(s_vm_mutex);
-
#if defined(HAVE_SYS_SHM_H)
if(shmdt(d_base - gr::pagesize()) == -1
|| shmdt(d_base) == -1