Threads
Sleep
pause the execution of the engine
Calling Sequence
Parameters
Description
Examples
Compatibility
Sleep( n )
n
-
(numeric) the number of seconds to sleep
The Sleep function pauses the execution of the Maple engine for a specified length of time. While paused, the engine will not use CPU resources.
n is the number of seconds the evaluation should wait. n can be less than 1 for sub-second pauses.
The length of time spent sleeping can be lengthened by other activity on the system, the time necessary to process the call and by the granularity of the system timers.
The Sleep command should not be used to implement synchronization between threads. Using Sleep to have one thread wait until another thread "is ready" is unreliable. Use mutexes or condition variables instead.
with⁡Threads:
tCPU≔time⁡:
tReal≔timereal⁡:
Sleep⁡5
timereal⁡−tReal
5.007
time⁡−tCPU
0.310
The Threads[Sleep] command was introduced in Maple 15.
For more information on Maple 15 changes, see Updates in Maple 15.
See Also
time
Download Help Document