summaryrefslogtreecommitdiffstats
path: root/shared_thread_data.py
blob: ba0a41978489c7d614392505f5e50f45ee316ca0 (plain)
1
2
3
4
5
6
7
8
9
import threading

class SharedThreadData:
    def __init__(self, cfg):
        self.word = ""
        self.word_lock = threading.Lock()
        self.exit_event = threading.Event()
        self.cfg = cfg