Re: disappearing threads

Anthony Green (green@cygnus.com)
Wed, 28 May 1997 14:31:22 -0700

> Overall, it seems to me that it
> is possible that something is wrong either with `format' alone or with
> the combination `format'-threads.

There's a good chance that format isn't thread safe. You can serialize
access to format with something like this:

(define *old-format* format)

(define (format . args)
(monitor
(apply *old-format* args)))

Anthony

-- 
Anthony Green                                               Cygnus Solutions
                                                       Sunnyvale, California