Re: stack checking and threads
Jim Blandy (jimb@red-bean.com)
Sat, 20 Sep 1997 13:14:17 -0400
If your application requires Guile to run in multiple OS threads,
you're probably out of luck. However, if your application uses
multiple threads itself, but the Guile code can be single-threaded,
you might try this:
Allocate one thread to be the Guile thread: initialize Guile in this
thread. Then have all other threads talk to Guile by sending messages
to that thread.
It's not as sexy as a truly threaded Guile would be, but ...