Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'd like to know if a fd has data available for reading. I have tried ioctl with FIONREAD but that results in a "Operation not supported error". Any ideas?

share|improve this question

2 Answers

up vote 4 down vote accepted

You can use select(), with a zero (not NULL) timeout.

share|improve this answer
Thanks that works fine. – StackedCrooked May 4 '10 at 9:49

Use poll() or select() on your file descriptor.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.