up vote 1 down vote favorite
share [g+] share [fb]

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

link|improve this question

feedback

3 Answers

up vote 6 down vote accepted

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|improve this answer
I get the error, 'sleep': identifier not found – Mohit Deshpande Nov 28 '09 at 19:44
Maybe you should include: #include <windows.h> – Erkan Haspulat Nov 28 '09 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 '09 at 19:47
feedback

You are looking for the sleep method.

sleep(5);
link|improve this answer
1  
As noted above, the sleep function is not a standard part of C++. – ChrisInEdmonton Nov 28 '09 at 19:49
feedback

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|improve this answer
feedback

Your Answer

 
or
required, but never shown

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