UNLOCK


The UNLOCK statement releases a previously LOCKed execution lock.

COMMAND SYNTAX

UNLOCK {expression}

 

SYNTAX ELEMENTS

If expression is specified it should evaluate to the number of a held execution lock, which will then be released.
If expression is omitted then all execution locks held by the current program will be released.

 

NOTES

No action is taken if the program attempts release an execution lock that it had not taken.

See also LOCK.

 

EXAMPLE

LOCK 23 ; LOCK 32
......
UNLOCK


jBC