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,25aa3c7e1b59f7b5 X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2002-01-16 12:25:21 PST Newsgroups: comp.lang.ada Path: archiver1.google.com!news1.google.com!newsfeed.stanford.edu!news-spur1.maxwell.syr.edu!news.maxwell.syr.edu!newspeer.radix.net!uunet!ash.uu.net!world!news From: Robert A Duff Subject: Re: A case where Ada defaults to unsafe? Sender: news@world.std.com (Mr Usenet Himself) Message-ID: Date: Wed, 16 Jan 2002 20:19:25 GMT References: <3C34BF2C.6030500@mail.com> <3C34D252.4070307@mail.com> <91J_7.1831$fG.7284@rwcrnsc51.ops.asp.att.net> NNTP-Posting-Host: shell01.theworld.com Organization: The World Public Access UNIX, Brookline, MA X-Newsreader: Gnus v5.7/Emacs 20.7 Xref: archiver1.google.com comp.lang.ada:18979 Date: 2002-01-16T20:19:25+00:00 List-Id: "Matthew Heaney" writes: > That depends how you define "heap." I define "a heap" as a synonym for "a storage pool". Now "*the* heap" is another matter. ;-) User defined storage pools can take advantage of special properties of the allocated type to produce efficient allocation. But still, nothing beats the normal allocation in the stack frame of a procedure. - Bob