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=-0.9 required=5.0 tests=BAYES_00,FROM_NUMERIC_TLD, XPRIO autolearn=no autolearn_force=no version=3.4.4 X-Google-Thread: 103376,3d9b089555215fa7,start X-Google-Attributes: gid103376,public X-Google-Language: ENGLISH,ASCII-7-bit Path: g2news1.google.com!news4.google.com!news.glorb.com!news-out1.kabelfoon.nl!newsfeed.kabelfoon.nl!bandi.nntp.kabelfoon.nl!194.25.134.62.MISMATCH!newsfeed00.sul.t-online.de!t-online.de!195.92.193.196.MISMATCH!nntp.theplanet.net!inewsm1.nntp.theplanet.net!news.theplanet.net!not-for-mail From: "Makhno" Newsgroups: comp.lang.ada Subject: Ada memory management seems slow Date: Wed, 12 Oct 2005 22:49:38 +0100 Message-ID: NNTP-Posting-Host: 81.76.182.7 X-Trace: news7.svr.pol.co.uk 1129153894 24957 81.76.182.7 (12 Oct 2005 21:51:34 GMT) NNTP-Posting-Date: 12 Oct 2005 21:51:34 GMT X-Complaints-To: abuse@theplanet.net X-Priority: 3 X-MSMail-Priority: Normal X-Newsreader: Microsoft Outlook Express 6.00.2900.2180 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2180 X-RFC2646: Format=Flowed; Original Xref: g2news1.google.com comp.lang.ada:5566 Date: 2005-10-12T21:51:34+00:00 List-Id: Hello, I have been given some Ada software to use, and it uses some linked list structures. I compiled it using Win32 GNAT. These structures are dynamically allocated, and when they are de-allocated, it takes up a almost 2 seconds of computing time, even though this is a fast PC and the actual memory they use doesn't appear to be much (seems less than 1mb according to the task manager). I was wondering what options are available for memory management, or whether I am inadvertently using a 'slow' mode. Thank you.