11-20-2008 12:29 AM
11-20-2008 01:00 AM
In the consumer loop you should check the error after the Read Queue function.
TOn
11-20-2008 04:13 AM

11-20-2008 02:48 PM
Hey suni,
Your problem has a very simple fix. Basically, your consumer loop is never stopping because you are wiring a non-error to the stop. You should wire the error to the stop AFTER the dequeue elements vi instead of before. The dequeue elements vi will throw an error when you hit stop, which is meant to stop the consumer loop. However, in your vi, you never see that error, as you are probing the wire in the wrong spot. You can cehck the producer/consumer example if this doesn't make sense.
Hope this helps!!