debugger invoked on a SB-IMPL::SAVE-WITH-MULTIPLE-THREADS-ERROR in thread
#<THREAD tid=3161136 "main thread" RUNNING {1003848003}>:
Cannot save core with multiple threads running.
Interactive thread (of current session):
#<THREAD tid=3161136 "main thread" RUNNING {1003848003}>
Other thread:
#<THREAD "lparallel" FINISHED values: NIL {1069E88B23}>
See also:
The SBCL Manual, Node "Saving a Core Image"
The current implementation of END-KERNEL isn't sufficient - the threads are not necessarily gone when that function returns.
I'm doing something akin to
but that (sometimes) breaks with
What does seem to help is to use
but I guess that should be done in
lparallel
proper?!Thanks!