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.9 required=5.0 tests=BAYES_00 autolearn=ham autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII X-Google-Thread: 103376,b777be000a53166 X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2003-01-29 11:57:46 PST Path: archiver1.google.com!news1.google.com!newsfeed.stanford.edu!logbridge.uoregon.edu!hammer.uoregon.edu!skates!not-for-mail From: Stephen Leake Newsgroups: comp.lang.ada Subject: Re: Streams and Access types Date: 29 Jan 2003 14:51:03 -0500 Organization: NASA Goddard Space Flight Center (skates.gsfc.nasa.gov) Message-ID: References: <3E37E080.3080608@epfl.ch> NNTP-Posting-Host: anarres.gsfc.nasa.gov Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Trace: skates.gsfc.nasa.gov 1043870661 26876 128.183.235.92 (29 Jan 2003 20:04:21 GMT) X-Complaints-To: usenet@news.gsfc.nasa.gov NNTP-Posting-Date: 29 Jan 2003 20:04:21 GMT User-Agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.2 Xref: archiver1.google.com comp.lang.ada:33577 Date: 2003-01-29T20:04:21+00:00 List-Id: Rodrigo Garc�a writes: > One solution is to do custom serialization but, does anybody knows > of an Ada compiler that can automatically serialize the objects > pointed by access variables (recursively if needed, such in the case > of the linked list)? This is not possible in general. How would the compiler resolve a circular list? All doubly-linked lists have circles, so it is a real problem. -- -- Stephe