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

进程的同步

时间:2018-08-19 10:51:36      阅读:181      评论:0      收藏:0      [点我收藏+]

标签:roc   targe   imp   同步锁   port   span   int   target   ssi   

# 进程的同步 (类似于线程的同步锁,同一时刻只能一个进程运行)
from multiprocessing import Process, Lock
import time

def f(l, i):
    with l:
        time.sleep(1)
        print(helloworld %s % i)

    # 上面with l: 相当于
    # l.acquire()
    #     print(‘helloworld %s‘ % i)
    # l.release()

if __name__ == __main__:
    lock = Lock()
    for num in range(10):
        Process(target=f, args=(lock, num,)).start()

 

进程的同步

标签:roc   targe   imp   同步锁   port   span   int   target   ssi   

原文地址:https://www.cnblogs.com/dangrui0725/p/9499357.html

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