my server uses non-blocking socket multiplexing. I want to use one thread for receiving incoming connections and handle input and another thread for sending data over sockets. It will look like that:
reader_worker(...)
{
...
select(fd_max+1, &read_set, NULL, NULL, NULL);
...
}
writer_worker(...)
{
...
select(fd_max+1, NULL, &write_set, NULL, NULL);
...
}
Since I don't want to miss incoming connections I can imagine it is better to receive and send in seperate threads. Do I have to lock the socket which might be in read_set as well as in write_set? Is this the correct approach or doesnt this method have any performance improvement?
selectaltogether before worrying about duplicating it to reduce latency. You're not going to miss connections if you have a listen backlog that's large enough to hold you over until the next iteration of the loop (which should be very fast since you're not reading or writing more than you have buffer space to hold). – Dustin Jan 20 at 4:23