Basically what impact does sleep() syscall have on the behaviour of the Linux scheduler? I'm trying to understand this with regard to some sort of timing issues I'm facing: three daemons communicating via IPC with each other, and it appears that one of them (P1) doesn't get complete information from P2 before P3 sends something to P1 (and P1 being unaware of necessary details, fails to process configuration from P3), This is clearly a timing issue, given the asynchronous nature of the IPC.
I run the daemons in the following way:
% p1 -d; p2 -d; p3 -d
However adding a short sleep between p2 and p3 helps to work around:
% p1 -d; p2 -d; sleep 1; p3 -d
I suspect it won't work with other kernels, system clock values etc. But I'm curious how it affects the setup I'm on? (was verified on x86 Linux 3.4.12, and on ARM Linux 2.6.31.8). It certainly has something to do with timeslices allocated by the scheduler to other process? What exactly does sleep() with the kernel ?
Thanks,
Mark