1.

Why Do I Keep Getting Eintr From The Socket Calls?

Answer»

This isn't REALLY so MUCH an error as an exit condition. It means that the call was interrupted by a signal. Any call that might block should be WRAPPED in a LOOP that checkes for EINTR, as is done in the example code .

This isn't really so much an error as an exit condition. It means that the call was interrupted by a signal. Any call that might block should be wrapped in a loop that checkes for EINTR, as is done in the example code .



Discussion

No Comment Found