Crash in thread on program termination

2005-03-28 Thread Eric Ries
I just recently came across this post from the mailing list: http://mail.python.org/pipermail/python-list/2005-February/265569.html in which the error with daemon threads at interpreter shutdown is discussed. I have experienced this problem in numerous programs that I've written and wanted to wri

Re: Crash in thread on program termination

2005-02-09 Thread Peter Hansen
Alec Wysoker wrote: I have several programs that have two or more threads. The threads > that are not the main thread are daemon threads, i.e. the fact > that they are running should not stop the program from terminating > if the main thread (the only non-daemon thread) terminates. Traceback (mos

Crash in thread on program termination

2005-02-09 Thread Alec Wysoker
I have several programs that have two or more threads. The threads that are not the main thread are daemon threads, i.e. the fact that they are running should not stop the program from terminating if the main thread (the only non-daemon thread) terminates. I do not join to these threads, but j