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 06:50:05 PST Path: archiver1.google.com!news1.google.com!newsfeed.stanford.edu!info1.fnal.gov!nntp.upenn.edu!elk.ncren.net!canoe.uoregon.edu!logbridge.uoregon.edu!feed2.news.rcn.net!rcn!nntp.abs.net!lore.csc.com!baen1673807.greenlnk.net!baen1673807!not-for-mail From: "Martin Dowie" Newsgroups: comp.lang.ada Subject: Re: Limited_Controlled types as 'out' arguments Date: Wed, 30 Jul 2003 14:47:25 +0100 Organization: BAE SYSTEMS Message-ID: <3f27cbf0@baen1673807.greenlnk.net> References: NNTP-Posting-Host: 20.44.240.6 X-Trace: lore.csc.com 1059572885 9218 20.44.240.6 (30 Jul 2003 13:48:05 GMT) X-Complaints-To: abuse@news.csc.com NNTP-Posting-Date: Wed, 30 Jul 2003 13:48:05 +0000 (UTC) X-Priority: 3 X-MSMail-Priority: Normal X-Newsreader: Microsoft Outlook Express 5.50.4807.1700 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4807.1700 X-Original-NNTP-Posting-Host: glkc1363740.sd.edinbr.gmav.gecm.com X-Original-Trace: 30 Jul 2003 14:45:20 +0100, glkc1363740.sd.edinbr.gmav.gecm.com Xref: archiver1.google.com comp.lang.ada:41009 Date: 2003-07-30T14:47:25+01:00 List-Id: > procedure Debug (msg : String; p : Char_Access) is Also, to demonstrate that it is the same 3 variables, don't use the address of something inside, use the 'Address of the actual variables. procedure Debug (Msg : String; P : System.Address) is ... Debug("Initializing", O'Address); and then everything can be seen to be ok.