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=0.2 required=5.0 tests=BAYES_00,INVALID_MSGID, REPLYTO_WITHOUT_TO_CC autolearn=no autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,db9b06af44b7c91c X-Google-Attributes: gid103376,public From: Bryce Bardin Subject: Re: ACE functionality in Ada Date: 1999/05/15 Message-ID: <373D89CE.C09BCDB2@home.com>#1/1 X-Deja-AN: 478180674 Content-Transfer-Encoding: 7bit References: <7heqc9$bj8$1@nnrp1.deja.com> <7heuhk$f1m$1@nnrp1.deja.com> <7hf84v$nqj$1@nnrp1.deja.com> X-Accept-Language: en,en,en-US,en-GB,fr,fr-BE,fr-CA,fr-CH,de, de-AU,de-DE,de-CH,es,es-AR,es-ES,es-CO,ru Content-Type: text/plain; charset=us-ascii X-Complaints-To: abuse@home.net X-Trace: news.rdc2.occa.home.com 926779855 24.7.50.190 (Sat, 15 May 1999 07:50:55 PDT) Organization: @Home Network MIME-Version: 1.0 Reply-To: bbardin@home.com NNTP-Posting-Date: Sat, 15 May 1999 07:50:55 PDT Newsgroups: comp.lang.ada Date: 1999-05-15T00:00:00+00:00 List-Id: Larry Hazel wrote: > The features of the distributed systems annex would be great. But, I > thought it was defined for a homogeneous network using the same compiler > on all nodes. If it will work with nodes of different cpu, OS, > compiler, it would solve all our networking problems. The main thing that is required for distributed use in a heterogeneous network is to make the message format architecturally neutral (and the same for every node). One way to achieve that is to use a textual form, which is what GLADE does. The compiler must generate the same format for the messages regardless of the architecture of the target, which is achieved by using the same compiler (gnat) for each target.