(interface-fix! interface)
This procedure “fixes” the specified interface and thus exempts it to be deleted (freed) during garbage collection when the interpreter has no longer a reference to it.
The interface is fixed.
unspecified (ok)
> (define interface (interface-attach "en0"))
interface
> (interface-fix! interface)
ok
> (interface-fixed? interface)
#t
>