On Fri 17 Feb 2012 23:59, l...@gnu.org (Ludovic Courtès) writes: > Andy Wingo <wi...@pobox.com> skribis: > >> Ooooh, good one. A bug in Guile, this one, and tricky to get around. >> Of course, running finalizers in a separate thread will solve it. > > It’s about [deferring] user-provided finalizer execution, no?
I think that's a limiting way to look at the problem -- it's really about running finalizers within a context in which no other locks are held. See the "Destructors, Finalizers, and Synchronization" paper from Boehm. > What about using asyncs for that? For instance, scm_i_finalize_smob > make a [deferred], instead of direct, call to the SMOB’s ‘free’, via > scm_i_queue_async_cell. It's an interesting idea. I suspect that it only defers the problem, though: if we start running finalizers through asyncs, we'll run into problems with locks at the scheme level. That is to say, just because you are in Scheme does not mean you can acquire any lock without deadlock. Andy -- http://wingolog.org/