python实现守护进程_python实现的守护进程(Daemon)用法实例
本文实例讲述了python实现的守护进程(Daemon)用法。分享给大家供大家参考。具体如下:def createDaemon():"'Funzione che crea un demone per eseguire un determinato programma…"'import os# create - fork 1try:if os.fork() > 0: os._exit(0) #...