< Ada Programming < Pragmas

Ada. Time-tested, safe and secure.
pragma Shared (local_name);

Summary

This language feature is deprecated since Ada 95.

Shared is an Ada 83 representation pragma equivalent to Atomic.[1] However, it can only be applied to variables, whereas Atomic can also be used with types.

It was removed from the language in Ada 95 for several reasons:

  • it was not properly defined[2]
  • it couldn't be applied to arrays[2]
  • the name Shared was confusing[3]

In Ada 95 pragma Shared was replaced by pragma Atomic, Volatile, Atomic_Components, and Volatile_Components.

Portability

Shared is a standard pragma of Ada 83, so it must be implemented by all Ada 83 compilers. It is obsolescent in successive versions of the language, but it is equivalent to pragma Atomic and thus it is usually implemented by Ada 95 compilers for compatibility.[4]

Example

type Device_Status :  Status_Register;
pragma Shared (Device_Status);

Incorrect usage

It is usually unsafe to use shared variables for tasking.[5]

See also

Wikibook

Ada 83 Reference Manual

Ada 95 Rationale

Ada 83 Rationale

Ada 83 Quality and Style Guide

References

  1. Robert Dewar (1996-02-17). "pragma Shared (was Ada is almost ....)". comp.lang.ada. (Web link). Retrieved on 2008-05-28. "pragma Atomic is QUITE different from pragma Volatile. pragma Atomic in Ada is essentially identical to pragma Shared in Ada 83. pragma Volatile in Ada is essentially identical to volatile in C, and is a feature that is not available in Ada 83."
  2. 1 2 Laurent Guerby (January 1995). "C.5 Shared Variable Control". Ada 95 Rationale. Intermetrics. "The pragma Shared was quite weak. The semantics were only defined in terms of tasks, and not very clearly. This made it inadequate for communication with non-Ada software or hardware devices. Moreover, it could be applied only to a limited set of objects. For example, it could not be applied to a component of an array."
  3. "C.6 Shared Variable Control". Annotated Ada 95 Reference Manual. http://www.adaic.com/standards/95aarm/html/AA-C-6.html#I6739. Retrieved 2008-05-28. "Pragma Atomic replaces Ada 83's pragma Shared. The name Shared was confusing, because the pragma was not used to mark variables as shared."
  4. "Implementation Defined Pragmas". GNAT Pro Reference Manual. AdaCore. http://www.adacore.com/wp-content/files/auto_update/gnat-unw-docs/html/gnat_rm_2.html#SEC91. Retrieved 2008-05-28. "This pragma is provided for compatibility with Ada 83. The syntax and semantics are identical to pragma Atomic."
  5. "7.4.7 Shared Variables and Pragma Shared". Ada 83 Quality and Style. Software Productivity Consortium, Inc. "Do not use shared variables as a task synchronization device. Use pragma Shared only when you are forced to by run time system deficiencies."
This article is issued from Wikibooks. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.