Re: Python daemon in Linux

2007-07-05 Thread [EMAIL PROTECTED]
thanx benjamin ) no more questions -- http://mail.python.org/mailman/listinfo/python-list

Re: Python daemon in Linux

2007-07-05 Thread [EMAIL PROTECTED]
As far as I understand the issue, any Python process has a sort of "main" thread. When the main thread exits, the Python process will exit if there are only daemon threads around. If there are any non-daemon threads, the Python process will only exit after those threads are finished. Or, as the doc

Python daemon in Linux

2007-07-05 Thread [EMAIL PROTECTED]
i made MyThread(Thread) when isDaemon() == 0: everything works when isDaemon() == 1: nothing works why??? -- http://mail.python.org/mailman/listinfo/python-list