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,FREEMAIL_FROM autolearn=ham autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,5072448cfe6241eb X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2002-07-15 15:19:53 PST Path: archiver1.google.com!news1.google.com!newsfeed.stanford.edu!news-spur1.maxwell.syr.edu!news.maxwell.syr.edu!wn1feed!worldnet.att.net!204.127.198.204!attbi_feed4!attbi_feed3!attbi.com!sccrnsc02.POSTED!not-for-mail From: Caffeine Junky Subject: Re: How does this look? Newsgroups: comp.lang.ada References: <_DcY8.524447$cQ3.46097@sccrnsc01> User-Agent: Pan/0.11.3 (Unix) Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Comment-To: "tmoran" Message-ID: NNTP-Posting-Host: 12.245.48.122 X-Complaints-To: abuse@attbi.com X-Trace: sccrnsc02 1026771591 12.245.48.122 (Mon, 15 Jul 2002 22:19:51 GMT) NNTP-Posting-Date: Mon, 15 Jul 2002 22:19:51 GMT Organization: AT&T Broadband Date: Mon, 15 Jul 2002 22:19:52 GMT Xref: archiver1.google.com comp.lang.ada:27126 Date: 2002-07-15T22:19:52+00:00 List-Id: Basically, I'm working at learning a bunch of different ways of handling memory. Storage Pools is one among many. An Indexed array is another. Using Unchecked_Deallocation on everything is yet another(although not necessarily the wisest)way. Memory leaks are also a pet peeve of mine. Hence I'm making it a point to try and become skilled at correctly handling the memory issues of my software without screwing up. Different methods work best for different problems. Sure, I could implement an array of access variables to records or other arrays, and have that variable and associated structure de-allocated when it's no longer referenced/goes out of scope. And I will implement some lists this way for practice. But I'm also learning how to use storage pools, because eventually they'll come in handy. Thanks for your help. I'm doing a bit more homework. I'll repost it once I got something that works. St4pL3