Hi,
i'm communicating with more than 40 serial devices connected thru' an
serial hub. the pc has to communicate thru' UDP to the serial hub.
since the response is quite sensitve, ( the application has to timeout
within 100msec) we are using "select" call with timeout.
There are around 100 threads that are parallely polling all the 40
devices on the serial hub.
I noticed that the select call is timingout i.e. returning 0
eventhough there is socket in the buffer..does this mean that the
timer got expired when that thread is in the sleep state (i.e. some
other thread is running) and later when the thread resumes, it is just
returning the previous state...
I'm running this application on a 2.66G Pentium PC..will the context
switching be an issue at all here. i dont see this problem if the
number of threads is reduced...,meaning less context switching.
thanks