The select-syscall tag has no wiki summary.
0
votes
1answer
20 views
Can i use select to send data on multiple interfaces as fast as the interface can process
I am an experienced network programmer and am faced with a situation where i need some advice.
I am required to distribute some data on several outgoing interfaces (via different tcp socket ...
2
votes
3answers
183 views
Why is select used in Linux
I was going through a serial program and I observed that they use select() before using read(). Why exactly is this required. Why cant we just directly call read() and check if it fails or not ? Also ...
2
votes
0answers
272 views
Is it appropriate to put blocking (without O_NONBLOCK) file desciptors to select/poll in Linux? [closed]
man select
BUGS
Under Linux, select() may report a socket file descriptor as "ready
for reading", while nevertheless a subsequent read blocks. This could
for example happen when data ...