Museum

Home

Lab Overview

Retrotechnology Articles

⇒ Online Manual

Media Vault

Software Library

Restoration Projects

Artifacts Sought

Related Articles

Example

Parameters

DEBUG WHILE — VMS C_3.0

     The  WHILE  command  provides  a  way  of  iteratively  executing
     debugger  commands.   As long as the language expression given as
     the WHILE clause is true, the debugger command list given in  the
     DO clause is executed.

 Format:

     WHILE lang-exp DO (debug-cmd-list)

Additional information available:

ExampleParameters

Example

     To repeatedly STEP until the variable X is not equal to zero:

     DBG> WHILE (X .EQ. 0) DO (STEP/SILENT/INTO)

Parameters

 lang-exp

     Any expression in the currently set language which  evaluates  to
     TRUE or FALSE.

 debug-cmd-list

     A single debugger command, or a  sequence  of  debugger  commands
     separated by semicolons.

Typewritten Software • bear@typewritten.org • Edmonds, WA 98026