sleep(1); #waits/sleeps for one second
Q1. How to make this 1/100 of a second? which of these work: 0,01 or 0.01 or .01 ?
Q2. What are alternatives? wait(); or snap(); ?? how do they differ (more/less precise)?
None of the above!
Your other options are Be aware that your system might not have millisecond resolution, no less nanosecond resolution. You might have trouble sleeping for precisely tiny, tiny amounts of time. |
|||
|
Use usleep in which you can pass in microseconds, so for your case you can call |
||||
|
|
|
What you are looking for is As for your second question, all these methods come with a high level of precision however I would advise you to test on your specific system if it's critical. |
|||
|
|
sleep(x)the best approach to solve ___________"? What is the problem you're trying to solve withsleep()? It's a powerful tool that is abused in every language when there are better solutions. – corsiKa Mar 27 '11 at 1:34