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,32ab3f0888d7e4b2 X-Google-Attributes: gid103376,public X-Google-Language: ENGLISH,ASCII-7-bit Path: g2news1.google.com!news1.google.com!news4.google.com!newshub.sdsu.edu!elnk-nf2-pas!newsfeed.earthlink.net!stamper.news.pas.earthlink.net!newsread2.news.pas.earthlink.net.POSTED!a6202946!not-for-mail From: "Jeffrey R. Carter" Organization: jrcarter at acm dot org User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.12) Gecko/20050915 X-Accept-Language: en-us, en MIME-Version: 1.0 Newsgroups: comp.lang.ada Subject: Re: Memory Leak References: <1136304945.663764.14490@g14g2000cwa.googlegroups.com> <1136314666.226780.277280@g14g2000cwa.googlegroups.com> <1136315117.916153.244720@f14g2000cwb.googlegroups.com> In-Reply-To: <1136315117.916153.244720@f14g2000cwb.googlegroups.com> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Message-ID: Date: Wed, 04 Jan 2006 04:46:35 GMT NNTP-Posting-Host: 67.3.218.57 X-Complaints-To: abuse@earthlink.net X-Trace: newsread2.news.pas.earthlink.net 1136349995 67.3.218.57 (Tue, 03 Jan 2006 20:46:35 PST) NNTP-Posting-Date: Tue, 03 Jan 2006 20:46:35 PST Xref: g2news1.google.com comp.lang.ada:2437 Date: 2006-01-04T04:46:35+00:00 List-Id: I see that Dowie beat me to telling you where to find the PragmAda Reusable Components. markp wrote: > type Queue_Messages_Type is ( > Small_Msg, > Large_Msg); > > type Queue_Msg(Msg : Queue_Messages_Type := Small_Msg) is > record > case Msg is > when Small_Msg => > Small_Msg_Data : Interface_Types.Small_Msg_Type; > when Large_Msg => > Large_Msg_Data : Interface_Types.Large_Msg_Type; > end case; > end record; Still nothing obvious. What are the definitions of (Small|Large)_Msg_Type, including all definitions they depend on? -- Jeff Carter "C's solution to this [variable-sized arrays] has real problems, and people who are complaining about safety definitely have a point." Dennis Ritchie 25