...
Excerpt | ||
---|---|---|
| ||
spin(duration) Loops spins (in a cpu loop) for a period of time (in seconds). |
Function: spin()
Pauses the thread analysis Spins (in a cpu loop) for a period of time (in seconds).
The main use of the spin function is to temporarily change the performance characteristics of an operation, to make it more 'cpu intensive'.
Syntax
spin(duration)
Examples
spin(0.1)
Spins (in a cpu loop) for one tenth of a second.
...