DELPROC Procedure

Deletes one or more compiled procedures from memory.

Caution: The routines DELSTRUCT, DELCOM, DELPROC, and DELFUNC are provided as convenience routines for PV‑WAVE developers. They allow developers to delete or reset certain elements ofPV‑WAVE's internal memory, which would otherwise require a restart of the PV‑WAVE session. They are only used at the $MAIN$ level, i.e., at the WAVE> prompt. Any other use results in session instability and undefined results.

Usage

    DELPROC, procedure1 ,..., proceduren

Input Parameters

procedurei — A string containing the name of a compiled procedure to be deleted.

Keywords

All — When present and nonzero, deletes all currently compiled procedures. When this keyword is used, all other parameters are ignored.

Discussion

Use this procedure to free the memory taken by compiled procedures. You can obtain a list of compiled procedures by entering: INFO, /Routines.

Example

LOADCT, 0, /Silent
INFO, /Procedures
; PV-WAVE prints a list of all procedures in memory including LOADCT.
; Delete the compiled LOADCT procedure from memory.
DELPROC, 'loadct'

See Also

DELFUNC, DELSTRUCT, DELVAR