Re: Threads and daemon processes

2009-05-08 Thread Gabriel Genellina
En Fri, 08 May 2009 18:06:02 -0300, Jeffrey Barish escribió: I have a program that uses threading.Timer to execute a function after a delay. It works fine when I run the program normally, but when I run the program as a daemon process, I can't find any evidence that the function ever runs.

Threads and daemon processes

2009-05-08 Thread Jeffrey Barish
I have a program that uses threading.Timer to execute a function after a delay. It works fine when I run the program normally, but when I run the program as a daemon process, I can't find any evidence that the function ever runs. Is it the case that daemon processes are not allowed to create a th