(interface-fixed? interface)
This predicate returns #t if the specified interface is “fixed” and thus exempted from being garbage collected when the interpreter has no longer a reference to it, otherwise #f is returned.
#t or #f
> (define interface (interface-attach "en0"))
interface
> (interface-fix! interface)
ok
> (interface-fixed? interface)
#t
>