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,4a5f04fa4207fc8e X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2001-08-26 08:07:03 PST Path: archiver1.google.com!news2.google.com!newsfeed.google.com!newsfeed.stanford.edu!newsfeeds.belnet.be!news.belnet.be!colt.net!dispose.news.demon.net!news.demon.co.uk!demon!pogner.demon.co.uk!zap!not-for-mail From: Simon Wright Newsgroups: comp.lang.ada Subject: Re: memory pool for entire ada program Date: 25 Aug 2001 08:21:59 +0100 Organization: CodeFella Message-ID: References: <9m5jod$o8o$1@ns.omskelecom.ru> NNTP-Posting-Host: localhost X-NNTP-Posting-Host: pogner.demon.co.uk:158.152.70.98 X-Trace: news.demon.co.uk 998838398 nnrp-01:4508 NO-IDENT pogner.demon.co.uk:158.152.70.98 X-Complaints-To: abuse@demon.net NNTP-Posting-Date: 25 Aug 2001 07:21:59 GMT X-Newsreader: Gnus v5.7/Emacs 20.7 Xref: archiver1.google.com comp.lang.ada:12433 Date: 2001-08-25T07:21:59+00:00 List-Id: "Dmitriy Anisimkov" writes: > Is it possable to set default memory pool in the GNAT ? > Do I have to rebuild run-time library sources for this ? > > I need to know where is the memory leak, > in the ada code or in the C library, used in my program. > > If i could change default storage pool, > I could see is that memory leak in my ada part or not. These aren't an answer to your actual question, but have you looked in the GNAT User Guide under either "Finding memory problems with gnatmem" or "Finding memory problems with GNAT Debug Pool"? Also, I had some success with ccmalloc from Armin Biere, see http://iseran.ira.uka.de/~armin/ccmalloc/ .