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,345a8b767542016e X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2002-03-15 01:27:05 PST Path: archiver1.google.com!news1.google.com!newsfeed.stanford.edu!news-spur1.maxwell.syr.edu!news.maxwell.syr.edu!newsfeed00.sul.t-online.de!t-online.de!newsfeed.icl.net!dispose.news.demon.net!news.demon.co.uk!demon!pipehawk.demon.co.uk!not-for-mail From: john.mccabe@emrad.ns.com (John McCabe) Newsgroups: comp.lang.ada Subject: Re: memory leakages with Ada? Date: Fri, 15 Mar 2002 09:27:11 GMT Organization: Emrad Ltd Message-ID: <3c91be07.1575014@news.demon.co.uk> References: <3c90af1e@news.starhub.net.sg> NNTP-Posting-Host: pipehawk.demon.co.uk X-NNTP-Posting-Host: pipehawk.demon.co.uk:158.152.226.81 X-Trace: news.demon.co.uk 1016184375 nnrp-08:15326 NO-IDENT pipehawk.demon.co.uk:158.152.226.81 X-Complaints-To: abuse@demon.net X-Newsreader: Forte Free Agent 1.21/32.243 Xref: archiver1.google.com comp.lang.ada:21266 Date: 2002-03-15T09:27:11+00:00 List-Id: On Thu, 14 Mar 2002 22:07:13 +0800, "Calvin Ow" wrote: >Hi, >Has Ada got any memory leakage problems like that of C? >Especially with the use of Pragma calls to C? Ada *shouldn't* have any inherent memory leaks, just like most languages shouldn't. Any memory leaks there are ones you've put in yourself (perhaps because you've mismanaged calls to C library functions that allocate memory etc. It is just as easy in Ada to create memory leaks as it is in C/C++.