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,fc35bf7ba6fca42d X-Google-Attributes: gid103376,public X-Google-Language: ENGLISH,ASCII-7-bit Path: g2news1.google.com!news4.google.com!news.glorb.com!wns14feed!worldnet.att.net!12.120.4.37!attcg2!ip.att.net!news.binc.net!kilgallen From: Kilgallen@SpamCop.net (Larry Kilgallen) Newsgroups: comp.lang.ada Subject: Re: "new" word Date: 18 Mar 2005 06:04:33 -0600 Organization: LJK Software Message-ID: <9rzktz7tBSP0@eisner.encompasserve.org> References: <1110966980.482176.111570@f14g2000cwb.googlegroups.com> <39v2kqF636c21U1@individual.net> NNTP-Posting-Host: eisner.encompasserve.org X-Trace: grandcanyon.binc.net 1111147391 9770 192.135.80.34 (18 Mar 2005 12:03:11 GMT) X-Complaints-To: abuse@binc.net NNTP-Posting-Date: Fri, 18 Mar 2005 12:03:11 +0000 (UTC) Xref: g2news1.google.com comp.lang.ada:9590 Date: 2005-03-18T06:04:33-06:00 List-Id: In article <39v2kqF636c21U1@individual.net>, Wes Groleau writes: > Robert A Duff wrote: >> For efficiency, an Ada implementation is likely to have it's own >> allocator internally, and only call malloc (or something) >> once in a while. > > This assumes (1) that the Ada vendor's allocation code is efficient, > and/or (2) that the platform's malloc is not. I don't know malloc, but on VMS the underlying allocation interfaces provide a rich variety of semantics that are just what Ada would need (in my opinion) for implementing storage pools, etc. I find it hard to believe the same versatility would be available from a common C runtime library routine, but I am biased.