From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.5-pre1 (2020-06-20) on ip-172-31-74-118.ec2.internal X-Spam-Level: X-Spam-Status: No, score=-1.9 required=3.0 tests=BAYES_00 autolearn=ham autolearn_force=no version=3.4.5-pre1 Date: 23 Sep 92 19:11:27 GMT From: sampson@cod.nosc.mil (Charles H. Sampson) Subject: Re: Using Global Variables Message-ID: <1992Sep23.191127.27728@nosc.mil> List-Id: Several of the entries in this thread have raised the spectre of shared memory. Without addressing whether shared memory is good or bad, let's clar- ify that it's not the point of this thread. _Global_ is an issue of name scope, of visibility. Ada gives perfectly adequate means for accessing shared memory without requiring that the names of the data in the shared mem- ory be global (the address clause). The shared memory is a shared resource, of course, and must be handled carefully, but the problems of shared memory are quite different from the problems of global data, at least in Ada. Charlie