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,29850945228df59 X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2003-06-29 08:17:29 PST Path: archiver1.google.com!news1.google.com!newsfeed.stanford.edu!news-spur1.maxwell.syr.edu!news.maxwell.syr.edu!newsfeed.icl.net!newsfeed.fjserv.net!newsfeed.freenet.de!feed.news.nacamar.de!news.belwue.de!news.uni-stuttgart.de!news.enyo.de!not-for-mail From: Florian Weimer Newsgroups: comp.lang.ada Subject: Re: Boehm-Demers-Weiser conservative garbage collector and GNAT Date: Sun, 29 Jun 2003 17:17:28 +0200 Message-ID: <87vfuohq0n.fsf@deneb.enyo.de> References: <1316747.mXveBPtf0Z@linux1.krischik.com> <87brwrs1qe.fsf@deneb.enyo.de> <1553495.v99NdxNB06@linux1.krischik.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: albireo.enyo.de 1056899849 13814 212.9.189.171 (29 Jun 2003 15:17:29 GMT) X-Complaints-To: Cancel-Lock: sha1:mAlSqYP0xSihpKHzovSOFlptkuU= Xref: archiver1.google.com comp.lang.ada:39891 Date: 2003-06-29T17:17:28+02:00 List-Id: Martin Krischik writes: > The Boehm-Demers-Weiser conservative garbage collector has atomic > memory which must be pointer free. But this is used only for > performance improvemend. Flagging atomic memory (and memory without internal access points) is crucial if you allocate large data structures (and cannot use the generational collector for some reason). > Current status is that I implemented the thin and thick bindung to the > collector and added the collector to my Trace class. Trace is used in any > class and task so it a good test. But I will add further tests. Interesting. A project of mine which is still under development changes GNAT itself to support the Boehm-Demers-Weiser collector: The project is not finished, but I think I've implemented the most complicated things.