(free-stable-pointer stable-pointer)
allocate-stable-pointer.
Frees the stable pointer, enabling the garbage collector to reclaim the object.
Example:
(allocate-stable-pointer (lambda (x) (+ x 10)))
=>
#.(SB-SYS:INT-SAP #X00000002)
(stable-pointer-value *)
=>
#<FUNCTION (LAMBDA (X)) {1004D016F9}>
(free-stable-pointer **)
=>
NIL