python - 在Python2.7中实现Barrier

标签 python multithreading python-2.7 python-3.x synchronization

我使用 Barriers 在 Python3 中实现了这段代码。我想在 Python2.7 中获得相同的功能,但我不知道要使用哪个同步原语,因为 Barriers 在 Python2.7 中不存在

import threading
import time
from threading import Thread,Barrier

b = Barrier(2, timeout=50)

def func1():
    time.sleep(3)
    b.wait()
    print('Working from func1')
    return 

def func2():
    time.sleep(5)
    b.wait()
    print('Working from func2')
    return

if __name__ == '__main__':
    Thread(target = func1).start()
    Thread(target = func2).start()

最佳答案

您可以使用信号量模拟屏障。 看一眼: Implementing an N process barrier using semaphores

问题是它没有超时参数,可能使用了Conditions ...

import time
from threading import Thread,Semaphore

class Barrier:
    def __init__(self, n):
        self.n = n
        self.count = 0
        self.mutex = Semaphore(1)
        self.barrier = Semaphore(0)

    def wait(self):
        self.mutex.acquire()
        self.count = self.count + 1
        self.mutex.release()
        if self.count == self.n: self.barrier.release()
        self.barrier.acquire()
        self.barrier.release()

b = Barrier(2)

def func1():
    time.sleep(3)
    #
    b.wait()
    #
    print('Working from func1')
    return 

def func2():
    time.sleep(5)
    #
    b.wait()
    #
    print('Working from func2')
    return    

if __name__ == '__main__':
    Thread(target = func1).start()
    Thread(target = func2).start()    

关于python - 在Python2.7中实现Barrier,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26622745/

相关文章:

python - 如果数组包含 2 或 3,则返回 True

python - PyUSB 1.0 : NotImplementedError: Operation not supported or unimplemented on this platform

python - 将 UTC 时间戳转换为 unixtime

python - 使用 python 验证 JSON 数据

python 名称正则表达式

python字符串模板: multiline substitution with correct indentation

python - 使用 ElementTree 解析 XML 文件的一部分时遇到困难

linux - Linux 内核线程的调度或抢占是如何工作的?

java - 透明扫描仪(中)

python - 从另一个线程调用一个函数?