PDA

View Full Version : Time Delay in C++.


DrKareem
Jan21-06, 12:21 PM
Hello. I'm wondering how to make a time delay of a few seconds using C++. The simplest way that came up to my mind is just to make loop for a few millions time or so, but the delay would change from computer to computer.

Hurkyl
Jan21-06, 12:26 PM
You could simply use the ordinary C time functions. See "time" and "clock" in the "ctime" header.

Orefa
Jan21-06, 12:42 PM
Wait approximately 5 seconds with something like this:

for (time_t t = time() + 5; time() < t; ) {}

If you need more accuracy, use clock_t and clock() instead, along with the CLK_TCK value. If you are programming for Windows, use Sleep(5000) to let the process sleep for 5000 milliseconds without wasting all those CPU cycles. For other OSes, check the documentation for a similar function.

dduardo
Jan21-06, 03:52 PM
sleep(<time in ms>) is the standard way of doing it.

DrKareem
Jan21-06, 05:06 PM
Are those functions in C or C++? If the latter, what library should I include?

dduardo
Jan21-06, 05:15 PM
Under Unix sleep is in unistd.h. I'm not sure about windows.

DrKareem
Jan21-06, 05:24 PM
No such library in windows. There is a time.h windows though, but no sleep function. Is there a way to view the source file?

DrKareem
Jan21-06, 05:30 PM
Wait approximately 5 seconds with something like this:

for (time_t t = time() + 5; time() < t; ) {}




error C2660: 'time' : function does not take 0 parameters

DrKareem
Jan21-06, 05:38 PM
I found this piece of code on the net:

time_t start_time, cur_time;

time(&start_time);
do
{
time(&cur_time);
}
while((cur_time - start_time) < n);

where n is the number of seconds. when i run my programme, it first does the delay, then run the rest.

i mean that the test programme should cout my first name, delay 3 seconds and the output my last name, but it delays 3 seconds then outputs my full name. weird.

dduardo
Jan21-06, 05:44 PM
Ugh, I did a google search and it said windows.h

DrKareem
Jan21-06, 05:49 PM
void sleep( clock_t wait )
{
clock_t goal;
goal = wait + clock();
while( goal > clock() )
;
}

Found the sleep function on the net, but still, the programme does the delay, then outputs the full name.

*shrugs*

Orefa
Jan21-06, 05:55 PM
error C2660: 'time' : function does not take 0 parameters
Oh right, that should have been time(0) instead of just time().

But are you using Unix or Windows? Because #include <windows.h> with Sleep(milliseconds) in Windows or #include <unistd.h> with sleep(milliseconds) in Unix is simpler and more reliable. The sleep function you show that uses clock_t instead of time_t does not count in seconds or milliseconds but in system clock ticks. This varies from system to system so the pause duration is not consistent across systems (if consistency matters).

i mean that the test programme should cout my first name, delay 3 seconds and the output my last name, but it delays 3 seconds then outputs my full name. weird.

Your first name may be in cout's output buffer but it won't show until the buffer is flushed. Try using cout.flush() to force it out before the pause.

DrKareem
Jan21-06, 06:06 PM
I have both windows and linux, but i usually programme on windows since i'm new to linux. Flushing the buffer did take care of the problem. Thanks guys!

Hurkyl
Jan21-06, 08:10 PM
This varies from system to system so the pause duration is not consistent across systems (if consistency matters).
Sure it is -- if you remember to convert using CLOCKS_PER_SEC! (I think that's how the macro is spelled)

jim mcnamara
Jan23-06, 01:58 PM
Edit: the C standard does not require any fine granularity for clock(). It has to "tick" at least once per second, even if CLOCKS_PER_SEC is 1000000. So if you choose 50 ms depending on the implementation of C/C++ you may still get 1 full second.

Sleep(DWORD milliseconds) is the Windows api call you want, in
windows.h Consider using it.

Implementing a roll-your-own time delay means the time delay will not port - and this may mean going from Windows XP on a PIII 500MHz to Windows XP on a P4 3.2GHz will cause the code not to behave correctly.

Plus, turning on optimization may allow a compiler optimize away a few of these kinds of homegrown loops

Use the api - all time delay calls are hardware/OS dependent anyway, so you are not losing portability. You are probably gaining some.

Hurkyl
Jan23-06, 09:26 PM
And if you really want, demarcate a platform-dependent block of your source code, and define your own "my_sleep" which is merely a wrapper for whatever the best method of sleeping is on a given system.

(So, when porting, the only code that ought to need changing is the code in this block)

Brent52tc
Mar8-07, 07:00 PM
You can simply use the Sleep(milliseconds) function which must have windows.h included...
I'm a little late, but just in case you still check it a year after the fact :)

Example:

#include <windows.h>
Sleep(1000);
//this will sleep for 1 second (1000) milliseconds
//It of course needs to be put into some function, but I'm a smidge too lazy :)

D H
Mar8-07, 07:14 PM
But are you using Unix or Windows? Because #include <windows.h> with Sleep(milliseconds) in Windows or #include <unistd.h> with sleep(milliseconds) in Unix is simpler and more reliable.

The sleep function in Unix is in seconds. This might create a problem if the Windows program is ported to Unix. A better solution might be to use the Posix usleep function, which takes integer microseconds as an argument (but the time needs to be less than 1 million microseconds).

for (time_t t = time() + 5; time() < t; ) {}
Never, ever do something like this. Sending the CPU into a busy loop is a very, very bad thing to do.

chroot
Mar8-07, 07:17 PM
Let's not resurrect ancient threads. Thanks.

- Warren