In a thread I´m receiving messages from socket.
If a specific message is income I´m setting a boolean to true.
In a method of my main process I have an endless loop which
has to end if the variable in thread is set to true.
The problem is it needs about 4 to 5 seconds from setting the value to true and
that the method will notice it.
What can I do that the method ends immediatly if the needed message is coming in?
Best regards
CrazyPlaya
P.S.: I forget to say the application is running as a service in Windows.
Last edited by CrazyPlaya; March 25th, 2010 at 02:49 AM.
It seems that the variable is blocked for this time.
How can I do it out of blocking?
Try using select call. select() gives you the power to monitor several sockets at the same time. It'll tell you which ones are ready for reading, which are ready for writing, and which sockets have raised exceptions, if you really want to know that.
Appreciate others by rating good posts
"Only buy something that you'd be perfectly happy to hold if the market shut down for 10 years." - Warren Buffett
Bookmarks