Re: Send never returns

2010-10-01 Thread Bob Cowdery
On 01/10/2010 02:42, Jonathan M Davis wrote: > On Thursday 30 September 2010 14:21:24 Bob Cowdery wrote: >> Is this a bug? >> >> I've tracked down this particular issue. It seems that if a thread (B) >> is spawned from another thread (A) then A can message B but if B tries >> to message A it never

Re: Send never returns

2010-09-30 Thread Jonathan M Davis
On Thursday 30 September 2010 14:21:24 Bob Cowdery wrote: > Is this a bug? > > I've tracked down this particular issue. It seems that if a thread (B) > is spawned from another thread (A) then A can message B but if B tries > to message A it never returns. However, B and C can communicate Ok. I > d

Re: Send never returns

2010-09-30 Thread Bob Cowdery
On 30/09/2010 20:58, Jonathan M Davis wrote: > On Thursday 30 September 2010 12:13:02 Bob Cowdery wrote: >> Hi >> >> I'm just starting to debug some code and have run into a problem. There >> is a bit too much code to post so as a first shot I wondered if anyone >> has had this happen. >> >> I h

Re: Send never returns

2010-09-30 Thread Jonathan M Davis
On Thursday 30 September 2010 12:13:02 Bob Cowdery wrote: > Hi > > I'm just starting to debug some code and have run into a problem. There > is a bit too much code to post so as a first shot I wondered if anyone > has had this happen. > > I have a thread in a read loop reading from a USB device

Send never returns

2010-09-30 Thread Bob Cowdery
Hi I'm just starting to debug some code and have run into a problem. There is a bit too much code to post so as a first shot I wondered if anyone has had this happen. I have a thread in a read loop reading from a USB device. When it accumulates enough data it dispatches it to another thread. Th