< Ada Programming < Pragmas

Pragma Controlled is an old Ada 83 pragma that was never implemented by any compiler. Consequently, it has finally been removed with Ada 2012.

The pragma was meant to prevent garbage collectors (also never implemented by any compiler) from tampering with the storage pool of the corresponding access type. The syntax was

type Pointer is access Some_Type;
pragma Controlled (Pointer);  -- see RM_83 4.8; RM_95/2005 13.11.3

Also see Deleting objects from a storage pool in the page about access types.

This article is issued from Wikibooks. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.