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

进程同步

时间:2018-06-06 22:23:40      阅读:195      评论:0      收藏:0      [点我收藏+]

标签:ESS   imp   name   for   同步   %s   family   16px   ase   

from multiprocessing import Process, Lock

def f(l, i):
  
        l.acquire():
        print(‘hello world %s‘%i)
        l.release()

if __name__ == ‘__main__‘:
    lock = Lock()

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

进程同步

标签:ESS   imp   name   for   同步   %s   family   16px   ase   

原文地址:https://www.cnblogs.com/ajaxa/p/9146463.html

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