On Wed, Apr 06, 2005 at 11:28:18AM -0400, James Cooley wrote: > I had a similar thing.... I was using sockets, but then got it to work. > > Are you sure the fd is staying in scope for the duration of the run? > > -jamie >
Chuck, Jamie has it right. Most likely the pipf_fd was going out of scope, and then was being closed. That's why in my orignal message I used something like self.pipe_fd = open("/pipe", "r"). You need to hold a reference to the return value of open for the duration of the run. Eric _______________________________________________ Discuss-gnuradio mailing list Discuss-gnuradio@gnu.org http://lists.gnu.org/mailman/listinfo/discuss-gnuradio