discuss-gnuradio
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Discuss-gnuradio] hanging on top_block.stop


From: Ben Reynwar
Subject: [Discuss-gnuradio] hanging on top_block.stop
Date: Tue, 7 Aug 2012 10:31:04 -0700

Hi all,

The following script hangs for me about 1 time in 10 on the call to
top_block.stop.
Drilling in a bit, it appears to get stuck on a call to 'interrupt' of
a boost::thread instance on line 91 of gruel/src/lib/thread_group.cc.
Has anyone else had this problem?

Cheers,
Ben

import time
from gnuradio import gr

def execute():
    tb = gr.top_block()
    src = gr.vector_source_c([1], True)
    snk = gr.null_sink(gr.sizeof_gr_complex)
    tb.connect(src, snk)
    tb.start()
    time.sleep(0.01)
    print("**********About to Stop***********")
    tb.stop()
    print("**********Stopped***********")

if __name__ == "__main__":
    execute()



reply via email to

[Prev in Thread] Current Thread [Next in Thread]