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.9 required=5.0 tests=BAYES_00,FORGED_GMAIL_RCVD, FREEMAIL_FROM autolearn=no autolearn_force=no version=3.4.4 X-Google-Thread: 103376,2ebd9459a8ae4178 X-Google-NewGroupId: yes X-Google-Attributes: gida07f3367d7,domainid0,public,usenet X-Google-Language: ENGLISH,ASCII-7-bit Path: g2news2.google.com!postnews.google.com!p25g2000pri.googlegroups.com!not-for-mail From: ytomino Newsgroups: comp.lang.ada Subject: Re: Question: dynamic rename? Date: Sat, 3 Sep 2011 05:27:25 -0700 (PDT) Organization: http://groups.google.com Message-ID: <0629faf5-21ff-40ea-8fce-5fa8e7e91e51@p25g2000pri.googlegroups.com> References: <691c0c64-4b85-4465-9b12-5d56123b8d94@r8g2000prd.googlegroups.com> NNTP-Posting-Host: 58.88.29.123 Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 X-Trace: posting.google.com 1315052959 18346 127.0.0.1 (3 Sep 2011 12:29:19 GMT) X-Complaints-To: groups-abuse@google.com NNTP-Posting-Date: Sat, 3 Sep 2011 12:29:19 +0000 (UTC) Complaints-To: groups-abuse@google.com Injection-Info: p25g2000pri.googlegroups.com; posting-host=58.88.29.123; posting-account=Mi71UQoAAACnFhXo1NVxPlurinchtkIj User-Agent: G2/1.0 X-Google-Web-Client: true X-Google-Header-Order: HNKRUAELSC X-HTTP-UserAgent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_5_8) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/13.0.782.218 Safari/535.1,gzip(gfe) Xref: g2news2.google.com comp.lang.ada:21808 Date: 2011-09-03T05:27:25-07:00 List-Id: If signal_one and signal_two are (aliased) variable, function signal_ref return access signal_type is begin case configuration is when one => return signal_one'Access; when two => return signal_two'Access; end case; end signal_ref; signal : signal_type renames signal_ref.all;