进程同步
Posted python
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了进程同步相关的知识,希望对你有一定的参考价值。
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()
以上是关于进程同步的主要内容,如果未能解决你的问题,请参考以下文章