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-Thread: 103376,400766bdbcd86f7c X-Google-Attributes: gid103376,public X-Google-Language: ENGLISH,ASCII-7-bit Path: g2news1.google.com!postnews.google.com!f14g2000cwb.googlegroups.com!not-for-mail From: "Per Lindquist" Newsgroups: comp.lang.ada Subject: Re: This can't be done in Ada...or? Date: 15 Feb 2005 00:27:33 -0800 Organization: http://groups.google.com Message-ID: <1108456053.837461.20340@f14g2000cwb.googlegroups.com> References: <1108139611.709714.36170@o13g2000cwo.googlegroups.com> <2IcPd.6268$mG6.1474@newsread1.news.pas.earthlink.net> <1108372232.436036.318690@g14g2000cwa.googlegroups.com> NNTP-Posting-Host: 138.14.239.132 Mime-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" X-Trace: posting.google.com 1108456058 3352 127.0.0.1 (15 Feb 2005 08:27:38 GMT) X-Complaints-To: groups-abuse@google.com NNTP-Posting-Date: Tue, 15 Feb 2005 08:27:38 +0000 (UTC) In-Reply-To: User-Agent: G2/0.2 Complaints-To: groups-abuse@google.com Injection-Info: f14g2000cwb.googlegroups.com; posting-host=138.14.239.132; posting-account=e84-wQ0AAADeDLnjH5yWqnRMVsJLfQJg Xref: g2news1.google.com comp.lang.ada:8321 Date: 2005-02-15T00:27:33-08:00 List-Id: Jeffrey Carter wrote: > procedure Q is > package That is new PragmARC.Reflection; Hm, I was so excited about your solution I didn't notice the potential problem with overhead, but a collegue of mine did: One of our target environments is a time-critical real-time system. We are worried about the execution overhead implied by a package instantiation (or any 'new' statement) in every subprogram in the system. Will your solution cause overhead for each subprogram call?