Description

Clears the shared area of memory established by Common. The specified common block must exist when FreeCommon is called.

Syntax

FreeCommon name

Parameters

The FreeCommon statement has the following parameters.

ParameterDescription
nameA name of existing labeled common.

See also

Common

Example

Common /MYGROUP/ MYVAR1@, MYVAR2@
* Process that uses MYVAR1@, MYVAR2@
FreeCommon "MYGROUP"
Label_Name = "MYGROUP"
Common //Label_Name// MYVAR1@, MYVAR2@
* Process that uses MYVAR1@, MYVAR2@
FreeCommon label_name
  • No labels