码迷,mamicode.com
首页 > 系统相关 > 详细

守护进程

时间:2020-07-23 16:04:36      阅读:83      评论:0      收藏:0      [点我收藏+]

标签:join   code   int   结束   设置   __name__   main   art   pre   

守护进程

p.daemon = True

主进程会等待所有的子进程结束,是为了回收子进程的资源

守护进程会等待主进程的代码执行结束之后再结束,而不是等待整个主进程结束.

主进程的代码什么时候结束,守护进程就什么时候结束,和其他子进程的执行进度无关

import time
from multiprocessing import Process

def son1():
    while True:
        print(‘--> in son1‘)
        time.sleep(1)

def son2():   # 执行10s
    for i in range(10):
        print(‘in son2‘)
        time.sleep(1)

if __name__ == ‘__main__‘:    # 3s
    p1 = Process(target=son1)
    p1.daemon = True    # 表示设置p1是一个守护进程
    p1.start()
    p2 = Process(target=son2,)
    p2.start()
    time.sleep(3)
    print(‘in main‘)
import time
from multiprocessing import Process

def son1():
    while True:
        print(‘--> in son1‘)
        time.sleep(1)

def son2():   # 执行10s
    for i in range(10):
        print(‘in son2‘)
        time.sleep(1)

if __name__ == ‘__main__‘:    # 3s
    p1 = Process(target=son1)
    p1.daemon = True    # 表示设置p1是一个守护进程
    p1.start()
    p2 = Process(target=son2,)
    p2.start()
    time.sleep(3)
    print(‘in main‘)
    p2.join()    # 等待p2结束之后才结束

# 等待p2结束 --> 主进程的代码才结束 --> 守护进程结束

守护进程

标签:join   code   int   结束   设置   __name__   main   art   pre   

原文地址:https://www.cnblogs.com/wyh0717/p/13365669.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!