Alright so basically I have 3 threads.
Each one of them use a function which inside uses the send() on a specific socket (let's call it S). Here's a small design:

How would I synchronize the S socket in such a way so that send() will be called one after another in a queue instead of the threads accessing the socket all at the same time?
