(queue-fixed? queue)
This predicate returns #t if the queue is “fixed” and thus exempted from garbage collection when the interpreter has no reference to it, otherwise #f.
#t or #f
> (define q (queue-create))
sl
> (queue-fix! q)
ok
> (queue-fixed? q)
#t
>