vote up 1 vote down star

What is the method to tell the console to wait for x seconds. Is there a built in method or must I make one.

flag

3 Answers

vote up 6 vote down check

It's platform specific. On Linux/UNIX, or other POSIX-compliant operating systems, you can use the sleep function, which takes a parameter in seconds. On Windows you can use Sleep, which takes a parameter in milliseconds.

link|flag
I get the error, 'sleep': identifier not found – Mohit Deshpande Nov 28 at 19:44
Maybe you should include: #include <windows.h> – Erkan H Nov 28 at 19:46
3  
See the links to the man pages for each sleep function. You probably need to include the appropriate headers. On Linux, that would be unistd.h, on Windows you want Windows.h I think. Also, please specify the OS you are using in the future, as it makes it easier for people to answer your questions succinctly. – Charles Salvia Nov 28 at 19:47
vote up 2 vote down

You are looking for the sleep method.

sleep(5);
link|flag
1  
As noted above, the sleep function is not a standard part of C++. – ChrisInEdmonton Nov 28 at 19:49
vote up 2 vote down

If you want it to be portable, you have to use preprocessing to determine what operating system it is and include the header as appropriate.

It would be good to make a function for calling sleep, like:

void portableSleep(int sec) {
#   ifdef POSIX
        sleep(sec);
#   endif
#   ifdef WINDOWS
        Sleep(sec * 1000);
#   endif
}

Autoconf can help you with this.

link|flag

Your Answer

Get an OpenID
or
never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.