MSLEEP


Allows the program to pause execution for a specified number of milliseconds.

 

COMMAND SYNTAX

MSLEEP {milliseconds}

 

SYNTAX ELEMENTS

milliseconds must be an integer which specifies the number of milliseconds to sleep.

If no parameter is supplied then a default time period of 1 millisecond is assumed.

 

NOTES

If the debugger is invoked while a program is sleeping and then execution continued, the user will be prompted:
Continue with SLEEP (Y/N) ?
If "N" is the response, the program will continue at the next statement after the MSLEEP.

See also SLEEP to sleep for a specified number of seconds or until a specified time.

 

EXAMPLES

* Sleep for 1/10th of a second...
MSLEEP 100
*
* 40 winks...
MSLEEP 40000


jBC