Path: csiph.com!weretis.net!feeder6.news.weretis.net!news.misty.com!news.iecc.com!.POSTED.news.iecc.com!nerds-end From: Robert Prins Newsgroups: comp.compilers Subject: Re: Looking for a garbage collection paper Date: Wed, 21 Sep 2022 09:42:35 +0000 Organization: A noiseless patient Spider Lines: 44 Sender: news@iecc.com Approved: comp.compilers@iecc.com Message-ID: <22-09-012@comp.compilers> References: <22-09-011@comp.compilers> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 8bit Injection-Info: gal.iecc.com; posting-host="news.iecc.com:2001:470:1f07:1126:0:676f:7373:6970"; logging-data="95533"; mail-complaints-to="abuse@iecc.com" Keywords: GC, comment Posted-Date: 22 Sep 2022 18:44:48 EDT X-submission-address: compilers@iecc.com X-moderator-address: compilers-request@iecc.com X-FAQ-and-archives: http://compilers.iecc.com In-Reply-To: <22-09-011@comp.compilers> Content-Language: en-US Xref: csiph.com comp.compilers:3164 On 2022-09-20 09:29, Spiros Bousbouras wrote: > The book "Garbage collection: algorithms for automatic dynamic memory > management" by Jones and Lins starts describing on page 197 a concurrent > garbage collection algorithm by Leslie Lamport and concludes on page 198 with > : "This colour change is done in a single instruction by an ingenious > reinterpretation of colour values by incrementing the value of a base colour > modulo 3: interested readers should consult [Lamport, 1976] for more > details." > > Ok ; if it's ingenious , I want to read it. The reference is > > Leslie Lamport > Garbage Collection with Multiple Processes: an Exercise in Parallelism > Proceedings of the 1976 International Conference on Parallel Processing, > T. Feng, ed., 50-54. > > I did a bit of googling , arrived at > http://lamport.azurewebsites.net/pubs/pubs.html and it says "No electronic > version available". The entry on the page for the above paper references > "On-the-fly Garbage Collection: an Exercise in Cooperation" and I have > downloaded that but ideally I would also like to see the above paper. ... Looks nothing more than what I'm doing in my various tools to convert legacy languages source to html to colour nested parentheses, in essence: colour[0] = 'red' colour[1] = 'blue' colour[2] = 'green' cur_col = 0 and for the next colour: cur_col = (cur_col + 1) mod 3 Sources available @ Robert -- Robert AH Prins robert(a)prino(d)org The hitchhiking grandfather - https://prino.neocities.org/ [Sounds right. Keep in mind that this paper is from almost 50 years ago, and the comments on the web site said it was trivial, written for a conference where you needed to submit a paper to go, then he went and decided it wasn't worth it. -John]