Does sleep() block?

4.5k Views Asked by At

I am implementing a multi cast server that sends a message every X amount of seconds to a multicast address.

I am also part of the multicast group and I will also receive messages from other senders in that group.

My question is, can I use sleep(X) to send my message while still receiving other messages from the group and process them? Or does sleep() block?

3

There are 3 best solutions below

0
On BEST ANSWER

Sleep blocks all execution, but only in the thread from which you call it. I would suggest that you create two threads, one for broadcasting and one for listening. Then make sure that you synchronize any data shared between the threads with Mutexes.

0
On

When you call sleep(), only the calling thread gets suspended. All other threads will continue running, so you can continue receiving the data on the concurrently running threads.

2
On

Yes, sleep is blocking. You haven't said how you're implementing the server, but if it's in terms of a select loop, you should use the timeout argument to select, together with gettimeofday or clock_gettime and some arithmetic to determine when the next time you should send a message is, whether you've passed that time, and if not, how long until the time is up (which you can use for the select timeout). The timeradd, timersub, and timercmp macros can help with that.