La guía o código que encontrarás en este post es la resolución más rápida y válida que hallamos a esta duda o problema.
Ejemplo: bloqueo de subprocesos en python
import threading
lock = threading.Lock()defcheck_this():with lock:"""
acquires lock at the beginning
and releases at the end of this block
"""
a, b =1,0print("locked")try:print(a // b)except Exception as _:print(_)print("lock is released")[threading.Thread(target=also_this).start()for _ inrange(2)]
Aquí tienes las reseñas y valoraciones
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)