.\" Automatically generated by Pandoc 3.1.3 .\" .\" Define V font for inline verbatim, using C font in formats .\" that render this, and otherwise B font. .ie "\f[CB]x\f[]"x" \{\ . ftr V B . ftr VI BI . ftr VB B . ftr VBI BI .\} .el \{\ . ftr V CR . ftr VI CI . ftr VB CB . ftr VBI CBI .\} .TH "al_rest" "3alleg5" "" "Allegro reference manual" "" .hy .SH NAME .PP al_rest - Allegro 5 API .SH SYNOPSIS .IP .nf \f[C] #include void al_rest(double seconds) \f[R] .fi .SH DESCRIPTION .PP Waits for the specified number of seconds. This tells the system to pause the current thread for the given amount of time. With some operating systems, the accuracy can be in the order of 10ms. That is, even .IP .nf \f[C] al_rest(0.000001) \f[R] .fi .PP might pause for something like 10ms. Also see the section on Timer routines for easier ways to time your program without using up all CPU.