Re: Scheduled maintenance of bugs.call-cc.org

2023-07-11 Thread Mario Domenech Goulart
Hi, On Tue, 11 Jul 2023 08:35:16 +0200 Mario Domenech Goulart wrote: > bugs.call-cc.org will be unavailable today at 19 UTC for maintenance. > Expected downtime is around one hour. bugs.call-cc.org is back online. We had a performance issue related to the database. The issue is now

[PATCH] Bugfix and drop weak references to finalizable objects (was: Re: [PATCH] thread-safe handling of asynchronous events)

2023-07-11 Thread felix . winkelmann
Pushed. I pushed another commit to handle bwp immediates introduced during compilation, without this compiling the weak-pointer-test failed for me. felix

[PATCH] Rename read/source-info to avoid self-reference and hang using older compilers

2023-07-11 Thread Peter Bex
Hi all, Here's a patch to change the name of the read/source-info we export from chicken.syntax. This avoids a problem we've been seeing on the Salmonella machines with hanging processes. Cheers, Peter From 520c12c7642448af2bc1c6e0a1790794d06dc2d4 Mon Sep 17 00:00:00 2001 From: Peter Bex Date:

Scheduled maintenance of bugs.call-cc.org

2023-07-11 Thread Mario Domenech Goulart
Hi, bugs.call-cc.org will be unavailable today at 19 UTC for maintenance. Expected downtime is around one hour. All the best. Mario -- http://parenteses.org/mario

Re: How should we deal with weak refs to finalizable objects? (was: Re: [PATCH] Bugfix and drop weak references to finalizable objects (was: Re: [PATCH] thread-safe handling of asynchronous events))

2023-07-11 Thread Peter Bex
On Mon, Jul 10, 2023 at 09:28:19PM +0200, felix.winkelm...@bevuta.com wrote: > After thinking some more about this, I realize that your approach > (clearing weak ref's to finalized data) is the right thing, since > any other behaviour in the presence of multithreading leads to > disaster. Thank