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-7-bit X-Google-Thread: 103376,3fc1c2283df835d5 X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2003-07-30 05:31:15 PST Path: archiver1.google.com!news1.google.com!newsfeed.stanford.edu!headwall.stanford.edu!newshub.sdsu.edu!elnk-nf2-pas!newsfeed.earthlink.net!stamper.news.pas.earthlink.net!newsread3.news.pas.earthlink.net.POSTED!not-for-mail From: "Matthew Heaney" Newsgroups: comp.lang.ada References: Subject: Re: Limited_Controlled types as 'out' arguments X-Priority: 3 X-MSMail-Priority: Normal X-Newsreader: Microsoft Outlook Express 6.00.2800.1158 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165 Message-ID: Date: Wed, 30 Jul 2003 12:31:15 GMT NNTP-Posting-Host: 65.110.133.134 X-Complaints-To: abuse@earthlink.net X-Trace: newsread3.news.pas.earthlink.net 1059568275 65.110.133.134 (Wed, 30 Jul 2003 05:31:15 PDT) NNTP-Posting-Date: Wed, 30 Jul 2003 05:31:15 PDT Organization: EarthLink Inc. -- http://www.EarthLink.net Xref: archiver1.google.com comp.lang.ada:40998 Date: 2003-07-30T12:31:15+00:00 List-Id: "Lutz Donnerhacke" wrote in message news:slrnbifb3k.o6.lutz@taranis.iks-jena.de... > I'm using an Limited_Controlled type as an 'out' parameter of a procedure. > While programming this procedure in question, I wonder how to Finalize the > object given as argument to the 'out' parameter. Controlled types, like all tagged types, are passed by reference. Three objects (a, b, c) are Initialize'd , and the same three objects are Finalize'd. Which objects do you think aren't being finalized?