From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=-1.3 required=5.0 tests=BAYES_00,INVALID_MSGID autolearn=no autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,266aef9e2d0285d4 X-Google-Attributes: gid103376,public From: Dale Stanbrough Subject: Re: Books about the Distributed Systems Annex ? Date: 1997/04/21 Message-ID: <5jfh4f$mrt$1@goanna.cs.rmit.EDU.AU>#1/1 X-Deja-AN: 236328074 Distribution: world References: <3354AFE4.167EB0E7@avions.aerospatiale.fr> X-XXMessage-ID: Organization: Royal Melbourne Institute of Technology Newsgroups: comp.lang.ada Date: 1997-04-21T00:00:00+00:00 List-Id: Tucker Taft writes... <> Here's a reminder :-) (what an amazing hoarder i am!) -------------------------------------------------- From: stt@copperfield.camb.inmet.com (Tucker Taft) Subject: Re: More on Distributed Systems Annex Date: Fri, 13 Sep 1996 15:08:22 GMT Lines: 53 Dale Stanbrough (dale@goanna.cs.rmit.edu.au) wrote: [...] : The book Concurrency In Ada by Burns and Wellings includes a chapter on this : and concludes... : "The most severe limitation of the Ada partition model is that : partitions are not first class language objects. Partition types : cannot be created and therefore instances of partitions... : cannot be expressed" : (this is an excellent book and well worth while buying) I don't think it is quite as grim as Burns and Wellings might imply. First of all, if you want multiple instances of things, you can declare a type or a generic. The distributed annex supports dynamic binding between partitions using either remote access-to-subprogram or remote access-to-classwide. The other, perhaps more important point is that the partition IDs are only really needed for initiating requests, not for replying. So even if every client ended up with the same partition ID, at a lower level presumably the PCS could make a distinction between them. In any case, it would seem a natural extension to explicitly support the notion of "client" partitions by allowing a "client" partition to have a Partition ID assigned dynamically, perhaps by a new version of Establish_RPC_Receiver with an OUT parameter rather than an IN parameter for the Partition_ID. : Dale -Tucker Taft stt@inmet.com http://www.inmet.com/~stt/ Intermetrics, Inc. Cambridge, MA USA ---------------------------------------------------------------------------