mirror of
https://github.com/Relintai/programming_tutorials.git
synced 2025-05-13 23:02:12 +02:00
9 lines
117 B
Python
9 lines
117 B
Python
import threading
|
|
import time
|
|
|
|
sem = threading.Semaphore()
|
|
|
|
def fun1():
|
|
sem.acquire()
|
|
#munka
|
|
sem.release() |