Protected procedure

From HandWiki

In computer science, the concept of protected procedure, first introduced as protected service routine in 1965,[1] is necessary when two computations A and B use the same routine S; a protected procedure is such if makes not possible for a malfunction of one of the two computation to cause incorrect execution to the other.[2]

One of the most important aspects of Dennis and Van Horn (hypothetical) system "supervisor"[2] was the inclusion of a description of protected procedure.[3]

In a global environment system (where there's some shared variable), the protected procedure mechanism allows the enforcement of the principle of least privilege and the avoidance of side effects in resources management (see Denning principles).

Footnotes

  1. Dennis 65
  2. 2.0 2.1 Dennis 66
  3. Levy 84, pp.46-6

References