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,195cfda04e416f67 X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2003-07-05 12:59:28 PST Path: archiver1.google.com!news1.google.com!newsfeed.stanford.edu!logbridge.uoregon.edu!newsfeed.vmunix.org!feed.news.nacamar.de!news.belwue.de!not-for-mail From: Florian Weimer Newsgroups: comp.lang.ada Subject: Re: GNAT and Memory Maps? Date: Sat, 05 Jul 2003 21:59:28 +0200 Organization: InterNetNews at News.BelWue.DE (Stuttgart, Germany) Message-ID: <871xx4hhi7.fsf@Login.CERT.Uni-Stuttgart.DE> References: NNTP-Posting-Host: login.cert.uni-stuttgart.de Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: news.BelWue.DE 1057435168 19987 129.69.16.19 (5 Jul 2003 19:59:28 GMT) X-Complaints-To: news@news.belwue.de NNTP-Posting-Date: Sat, 5 Jul 2003 19:59:28 +0000 (UTC) User-Agent: Gnus/5.090008 (Oort Gnus v0.08) Emacs/21.3 (i386-pc-linux-gnu) Cancel-Lock: sha1:w0gzTNXtmnUEMPv5qDs3+iCh+Co= Xref: archiver1.google.com comp.lang.ada:40082 Date: 2003-07-05T21:59:28+02:00 List-Id: Freejack writes: > I've been picking through the GNAT docs (and Ada docs in general) in an > attempt to figure out how/if and when/why the Ada compiler might choose to > use an mmap system call in deference to a malloc/calloc or alloca call. At least the publicly available GNAT versions completely rely on the system's C run-time library for memory management. They do not go below the malloc()/free() level.