Thank you for writing up this SRFI, John.

It would be great if you could add a reference to the canonical "guardians" paper ([1]).  Besides being an extra explanation of the ideas and the mechanism, it also describes how an implementation of guardians can be added to an existing garbage collector,

I would also state under the actual entry for (guardian) that #f is returned when there is no object to be returned.

It would be nice if we could have formal semantics on what "accessible" and so on means (maybe Clinger's PTC paper can help here), but I understand that this would be a lot of work.  For the future language standard, we may want to have this precision.

Marc

--

[1] https://legacy.cs.indiana.edu/~dyb/pubs/guardians-pldi93.pdf

Am Do., 12. Okt. 2023 um 20:31 Uhr schrieb Arthur A. Gleckler <xxxxxx@speechcode.com>:

Scheme Request for Implementation 246,
"Guardians",
by John Cowan,
is now available for discussion.

Its draft and an archive of the ongoing discussion are available at https://srfi.schemers.org/srfi-246/.

You can join the discussion of the draft by filling out the subscription form on that page.

You can contribute a message to the discussion by sending it to https://srfi-email.schemers.org/srfi-246/.

Here's the abstract:

Guardians allow programs to protect objects from deallocation by the garbage collector and to determine which objects would otherwise have been deallocated. When the object has associated non-memory resources, a program can register it with a guardian. The GC will mark inaccessible objects but will not collect them; at the program's convenience, inaccessible objects are removed from the guardian and their non-memory resources are disposed of. Guardians allow objects to be saved from deallocation indefinitely so that they can be reused or so that clean-up or other actions can be performed using the data stored within the objects. Guardians avoid the problems associated with classical finalizers detailed in the Rationale section.

Regards,

SRFI Editor