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,1f2b6675d1185b30 X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2002-06-21 08:13:04 PST Path: archiver1.google.com!news1.google.com!newsfeed.stanford.edu!canoe.uoregon.edu!logbridge.uoregon.edu!isdnet!news.dotcom.fr!news.fr.ipricot.com!not-for-mail From: tgingold@ipricot.com Newsgroups: comp.lang.ada Subject: Re: Garbage collector on Ada? Date: Fri, 21 Jun 2002 15:05:52 +0000 (UTC) Organization: IPricot Inc. Message-ID: References: <3D1339BF.A2EB67B5@despammed.com> NNTP-Posting-Host: tgingold.fr.ipricot.com X-Trace: mo5.fr.ipricot.com 1024671952 27063 192.168.31.202 (21 Jun 2002 15:05:52 GMT) X-Complaints-To: news@ipricot.com NNTP-Posting-Date: Fri, 21 Jun 2002 15:05:52 +0000 (UTC) User-Agent: slrn/0.9.7.2 (Win32) Xref: archiver1.google.com comp.lang.ada:26561 Date: 2002-06-21T15:05:52+00:00 List-Id: In article <3D1339BF.A2EB67B5@despammed.com>, Wes Groleau wrote: > Does the gcc Java compiler do garbage collection? Yes, of course. > Or is that assumed to be a JVM thing, omitted for > a native compiler? It is part of the JVM environment. > If it does garbage collection, is that in the back end? No, it is a library. > And if it's in the back end, how hard would it be > to tweak it so that it provides GC for other languages? It is the Bohm's conservative GC. You *should* be able to use it with GNAT, but there is more work to do (things such as finalization). Tristan.