| |
|
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
|
|
| """Task scheduler. |
| |
| FIXME: We have a problem here. If a task schedules a read-only but we |
| also have pending writes we have to schedule the ReadWrite callback before |
| the ReadOnly (and this is invalid, at least in Modelsim). |
| """ |
| import inspect |
| import logging |
| import os |
| import threading |
| import warnings |
| from collections import OrderedDict |
| from collections.abc import Coroutine |
| from typing import Any, Callable, Union |
|
|
| import cocotb |
| from cocotb import _outcomes, _py_compat |
| from cocotb.log import SimLog |
| from cocotb.result import TestComplete |
| from cocotb.task import Task |
| from cocotb.triggers import ( |
| Event, |
| GPITrigger, |
| Join, |
| NextTimeStep, |
| NullTrigger, |
| ReadOnly, |
| ReadWrite, |
| Timer, |
| Trigger, |
| ) |
| from cocotb.utils import remove_traceback_frames |
|
|
| |
| _profiling = "COCOTB_ENABLE_PROFILING" in os.environ |
| if _profiling: |
| import cProfile |
| import pstats |
|
|
| _profile = cProfile.Profile() |
|
|
| |
| |
| _debug = "COCOTB_SCHEDULER_DEBUG" in os.environ |
|
|
|
|
| class InternalError(BaseException): |
| """An error internal to scheduler. If you see this, report a bug!""" |
|
|
| pass |
|
|
|
|
| class profiling_context: |
| """Context manager that profiles its contents""" |
|
|
| def __enter__(self): |
| _profile.enable() |
|
|
| def __exit__(self, *excinfo): |
| _profile.disable() |
|
|
|
|
| class external_state: |
| INIT = 0 |
| RUNNING = 1 |
| PAUSED = 2 |
| EXITED = 3 |
|
|
|
|
| class external_waiter: |
| def __init__(self): |
| self._outcome = None |
| self.thread = None |
| self.event = Event() |
| self.state = external_state.INIT |
| self.cond = threading.Condition() |
| self._log = SimLog(f"cocotb.external.thead.{self.thread}", id(self)) |
|
|
| @property |
| def result(self): |
| return self._outcome.get() |
|
|
| def _propagate_state(self, new_state): |
| with self.cond: |
| if _debug: |
| self._log.debug( |
| f"Changing state from {self.state} -> {new_state} from {threading.current_thread()}" |
| ) |
| self.state = new_state |
| self.cond.notify() |
|
|
| def thread_done(self): |
| if _debug: |
| self._log.debug(f"Thread finished from {threading.current_thread()}") |
| self._propagate_state(external_state.EXITED) |
|
|
| def thread_suspend(self): |
| self._propagate_state(external_state.PAUSED) |
|
|
| def thread_start(self): |
| if self.state > external_state.INIT: |
| return |
|
|
| if not self.thread.is_alive(): |
| self._propagate_state(external_state.RUNNING) |
| self.thread.start() |
|
|
| def thread_resume(self): |
| self._propagate_state(external_state.RUNNING) |
|
|
| def thread_wait(self): |
| if _debug: |
| self._log.debug( |
| f"Waiting for the condition lock {threading.current_thread()}" |
| ) |
|
|
| with self.cond: |
| while self.state == external_state.RUNNING: |
| self.cond.wait() |
|
|
| if _debug: |
| if self.state == external_state.EXITED: |
| self._log.debug( |
| f"Thread {self.thread} has exited from {threading.current_thread()}" |
| ) |
| elif self.state == external_state.PAUSED: |
| self._log.debug( |
| f"Thread {self.thread} has called yield from {threading.current_thread()}" |
| ) |
| elif self.state == external_state.RUNNING: |
| self._log.debug( |
| f"Thread {self.thread} is in RUNNING from {threading.current_thread()}" |
| ) |
|
|
| if self.state == external_state.INIT: |
| raise Exception( |
| f"Thread {self.thread} state was not allowed from {threading.current_thread()}" |
| ) |
|
|
| return self.state |
|
|
|
|
| class Scheduler: |
| """The main scheduler. |
| |
| Here we accept callbacks from the simulator and schedule the appropriate |
| tasks. |
| |
| A callback fires, causing the :meth:`_react` method to be called, with the |
| trigger that caused the callback as the first argument. |
| |
| We look up a list of tasks to schedule (indexed by the trigger) and |
| schedule them in turn. |
| |
| .. attention:: |
| |
| Implementors should not depend on the scheduling order! |
| |
| Due to the simulator nuances and fun with delta delays we have the |
| following modes: |
| |
| Normal mode |
| - Callbacks cause tasks to be scheduled. |
| - Any pending writes are cached and do not happen immediately. |
| |
| ReadOnly mode |
| - Corresponds to ``cbReadOnlySynch`` (VPI) or ``vhpiCbRepEndOfTimeStep`` |
| (VHPI). In this state we are not allowed to perform writes. |
| |
| Write mode |
| - Corresponds to ``cbReadWriteSynch`` (VPI) or ``vhpiCbRepLastKnownDeltaCycle`` (VHPI) |
| In this mode we play back all the cached write updates. |
| |
| We can legally transition from Normal to Write by registering a :class:`~cocotb.triggers.ReadWrite` |
| callback, however usually once a simulator has entered the ReadOnly phase |
| of a given timestep then we must move to a new timestep before performing |
| any writes. The mechanism for moving to a new timestep may not be |
| consistent across simulators and therefore we provide an abstraction to |
| assist with compatibility. |
| |
| |
| Unless a task has explicitly requested to be scheduled in ReadOnly |
| mode (for example wanting to sample the finally settled value after all |
| delta delays) then it can reasonably be expected to be scheduled during |
| "normal mode" i.e. where writes are permitted. |
| """ |
|
|
| _MODE_NORMAL = 1 |
| _MODE_READONLY = 2 |
| _MODE_WRITE = 3 |
| _MODE_TERM = 4 |
|
|
| |
| _next_time_step = NextTimeStep() |
| _read_write = ReadWrite() |
| _read_only = ReadOnly() |
| _timer1 = Timer(1) |
|
|
| def __init__(self, handle_result: Callable[[Task], None]) -> None: |
| self._handle_result = handle_result |
|
|
| self.log = SimLog("cocotb.scheduler") |
| if _debug: |
| self.log.setLevel(logging.DEBUG) |
|
|
| |
|
|
| |
| |
| self._trigger2tasks = _py_compat.insertion_ordered_dict() |
|
|
| |
| self._mode = Scheduler._MODE_NORMAL |
|
|
| |
| |
| |
| self._write_calls = OrderedDict() |
|
|
| self._pending_tasks = [] |
| self._pending_triggers = [] |
| self._pending_threads = [] |
| self._pending_events = [] |
| self._scheduling = [] |
|
|
| self._terminate = False |
| self._test = None |
| self._main_thread = threading.current_thread() |
|
|
| self._current_task = None |
|
|
| self._is_reacting = False |
|
|
| self._write_task = None |
| self._writes_pending = Event() |
|
|
| async def _do_writes(self): |
| """An internal task that performs pending writes""" |
| while True: |
| await self._writes_pending.wait() |
| if self._mode != Scheduler._MODE_NORMAL: |
| await self._next_time_step |
|
|
| await self._read_write |
|
|
| while self._write_calls: |
| handle, (func, args) = self._write_calls.popitem(last=False) |
| func(*args) |
| self._writes_pending.clear() |
|
|
| def _check_termination(self): |
| """ |
| Handle a termination that causes us to move onto the next test. |
| """ |
| if self._terminate: |
| if _debug: |
| self.log.debug("Test terminating, scheduling Timer") |
|
|
| if self._write_task is not None: |
| self._write_task.kill() |
| self._write_task = None |
|
|
| for t in self._trigger2tasks: |
| t._unprime() |
|
|
| if self._timer1.primed: |
| self._timer1._unprime() |
|
|
| self._timer1._prime(self._test_completed) |
| self._trigger2tasks = _py_compat.insertion_ordered_dict() |
| self._terminate = False |
| self._write_calls = OrderedDict() |
| self._writes_pending.clear() |
| self._mode = Scheduler._MODE_TERM |
|
|
| def _test_completed(self, trigger=None): |
| """Called after a test and its cleanup have completed""" |
| if _debug: |
| self.log.debug(f"_test_completed called with trigger: {trigger}") |
| if _profiling: |
| ps = pstats.Stats(_profile).sort_stats("cumulative") |
| ps.dump_stats("test_profile.pstat") |
| ctx = profiling_context() |
| else: |
| ctx = _py_compat.nullcontext() |
|
|
| with ctx: |
| self._mode = Scheduler._MODE_NORMAL |
| if trigger is not None: |
| trigger._unprime() |
|
|
| |
| test = self._test |
| self._test = None |
| if test is None: |
| raise InternalError("_test_completed called with no active test") |
| if test._outcome is None: |
| raise InternalError("_test_completed called with an incomplete test") |
|
|
| |
| if _debug: |
| self.log.debug("Issue test result to regression object") |
|
|
| |
| self._handle_result(test) |
|
|
| |
| self._check_termination() |
|
|
| def _react(self, trigger): |
| """ |
| Called when a trigger fires. |
| |
| We ensure that we only start the event loop once, rather than |
| letting it recurse. |
| """ |
| if self._is_reacting: |
| |
| self._pending_triggers.append(trigger) |
| return |
|
|
| if self._pending_triggers: |
| raise InternalError( |
| f"Expected all triggers to be handled but found {self._pending_triggers}" |
| ) |
|
|
| |
| self._is_reacting = True |
| try: |
| self._event_loop(trigger) |
| finally: |
| self._is_reacting = False |
|
|
| def _event_loop(self, trigger): |
| """ |
| Run an event loop triggered by the given trigger. |
| |
| The loop will keep running until no further triggers fire. |
| |
| This should be triggered by only: |
| * The beginning of a test, when there is no trigger to react to |
| * A GPI trigger |
| """ |
| if _profiling: |
| ctx = profiling_context() |
| else: |
| ctx = _py_compat.nullcontext() |
|
|
| with ctx: |
| |
| if _debug: |
| self.log.debug(f"Trigger fired: {trigger}") |
| |
|
|
| if self._mode == Scheduler._MODE_TERM: |
| if _debug: |
| self.log.debug( |
| f"Ignoring trigger {trigger} since we're terminating" |
| ) |
| return |
|
|
| if trigger is self._read_only: |
| self._mode = Scheduler._MODE_READONLY |
| |
| elif isinstance(trigger, GPITrigger): |
| self._mode = Scheduler._MODE_NORMAL |
|
|
| |
| is_first = True |
| self._pending_triggers.append(trigger) |
| while self._pending_triggers: |
| trigger = self._pending_triggers.pop(0) |
|
|
| if not is_first and isinstance(trigger, GPITrigger): |
| self.log.warning( |
| "A GPI trigger occurred after entering react - this " |
| "should not happen." |
| ) |
| assert False |
|
|
| |
| is_first = False |
|
|
| |
| |
| try: |
| self._scheduling = self._trigger2tasks.pop(trigger) |
| except KeyError: |
| |
| |
| |
| if isinstance(trigger, GPITrigger): |
| self.log.critical( |
| f"No tasks waiting on trigger that fired: {trigger}" |
| ) |
|
|
| trigger.log.info("I'm the culprit") |
| |
| |
| |
| elif _debug: |
| self.log.debug( |
| f"No tasks waiting on trigger that fired: {trigger}" |
| ) |
|
|
| del trigger |
| continue |
|
|
| if _debug: |
| debugstr = "\n\t".join([str(task) for task in self._scheduling]) |
| if len(self._scheduling) > 0: |
| debugstr = "\n\t" + debugstr |
| self.log.debug( |
| f"{len(self._scheduling)} pending tasks for trigger {trigger}{debugstr}" |
| ) |
|
|
| |
| trigger._unprime() |
|
|
| for task in self._scheduling: |
| if task._outcome is not None: |
| |
| continue |
| if _debug: |
| self.log.debug(f"Scheduling task {task}") |
| self._schedule(task, trigger=trigger) |
| if _debug: |
| self.log.debug(f"Scheduled task {task}") |
|
|
| |
| |
| |
| del task |
|
|
| self._scheduling = [] |
|
|
| |
| while self._pending_tasks: |
| task = self._pending_tasks.pop(0) |
| if _debug: |
| self.log.debug(f"Scheduling queued task {task}") |
| self._schedule(task) |
| if _debug: |
| self.log.debug(f"Scheduled queued task {task}") |
|
|
| del task |
|
|
| |
| while self._pending_events: |
| if _debug: |
| self.log.debug( |
| f"Scheduling pending event {self._pending_events[0]}" |
| ) |
| self._pending_events.pop(0).set() |
|
|
| |
| |
| |
| del trigger |
|
|
| |
| self._check_termination() |
| if _debug: |
| self.log.debug("All tasks scheduled, handing control back to simulator") |
|
|
| def _unschedule(self, task): |
| """Unschedule a task. Unprime any pending triggers""" |
| if task in self._pending_tasks: |
| assert not task.has_started() |
| self._pending_tasks.remove(task) |
| |
| task.close() |
| return |
|
|
| |
| trigger = task._trigger |
| if trigger is not None: |
| task._trigger = None |
| if task in self._trigger2tasks.setdefault(trigger, []): |
| self._trigger2tasks[trigger].remove(task) |
| if not self._trigger2tasks[trigger]: |
| trigger._unprime() |
| del self._trigger2tasks[trigger] |
|
|
| assert self._test is not None |
|
|
| if task is self._test: |
| if _debug: |
| self.log.debug(f"Unscheduling test {task}") |
|
|
| if not self._terminate: |
| self._terminate = True |
| self._cleanup() |
|
|
| elif Join(task) in self._trigger2tasks: |
| self._react(Join(task)) |
| else: |
| try: |
| |
| |
| task._outcome.get() |
| except (TestComplete, AssertionError) as e: |
| task.log.info("Test stopped by this task") |
| e = remove_traceback_frames(e, ["_unschedule", "get"]) |
| self._abort_test(e) |
| except BaseException as e: |
| task.log.error("Exception raised by this task") |
| e = remove_traceback_frames(e, ["_unschedule", "get"]) |
| warnings.warn( |
| '"Unwatched" tasks that throw exceptions will not cause the test to fail. ' |
| "See issue #2664 for more details.", |
| FutureWarning, |
| ) |
| self._abort_test(e) |
|
|
| def _schedule_write(self, handle, write_func, *args): |
| """Queue `write_func` to be called on the next ReadWrite trigger.""" |
| if self._mode == Scheduler._MODE_READONLY: |
| raise Exception( |
| f"Write to object {handle._name} was scheduled during a read-only sync phase." |
| ) |
|
|
| |
| |
| if self._write_task is None: |
| self._write_task = self.start_soon(self._do_writes()) |
|
|
| if handle in self._write_calls: |
| del self._write_calls[handle] |
| self._write_calls[handle] = (write_func, args) |
| self._writes_pending.set() |
|
|
| def _resume_task_upon(self, task, trigger): |
| """Schedule `task` to be resumed when `trigger` fires.""" |
| task._trigger = trigger |
|
|
| trigger_tasks = self._trigger2tasks.setdefault(trigger, []) |
| if task is self._write_task: |
| |
| |
| |
| trigger_tasks.insert(0, task) |
| else: |
| |
| trigger_tasks.append(task) |
|
|
| if not trigger.primed: |
| if trigger_tasks != [task]: |
| |
| raise InternalError("More than one task waiting on an unprimed trigger") |
|
|
| try: |
| trigger._prime(self._react) |
| except Exception as e: |
| |
| self._trigger2tasks.pop(trigger) |
|
|
| |
| self._resume_task_upon( |
| task, |
| NullTrigger( |
| name="Trigger._prime() Error", outcome=_outcomes.Error(e) |
| ), |
| ) |
|
|
| def _queue(self, task): |
| """Queue a task for execution""" |
| |
| if task not in self._pending_tasks: |
| self._pending_tasks.append(task) |
|
|
| def _queue_function(self, task): |
| """Queue a task for execution and move the containing thread |
| so that it does not block execution of the main thread any longer. |
| """ |
| |
| matching_threads = [ |
| t for t in self._pending_threads if t.thread == threading.current_thread() |
| ] |
| if len(matching_threads) == 0: |
| raise RuntimeError("queue_function called from unrecognized thread") |
|
|
| |
| |
| (t,) = matching_threads |
|
|
| async def wrapper(): |
| |
| try: |
| _outcome = _outcomes.Value(await task) |
| except BaseException as e: |
| _outcome = _outcomes.Error(e) |
| event.outcome = _outcome |
| |
| |
| |
| |
| |
| |
| t.thread_resume() |
| event.set() |
|
|
| event = threading.Event() |
| self._pending_tasks.append(Task(wrapper())) |
| |
| |
| |
| t.thread_suspend() |
| |
| event.wait() |
| return event.outcome.get() |
|
|
| def _run_in_executor(self, func, *args, **kwargs): |
| """Run the task in a separate execution thread |
| and return an awaitable object for the caller. |
| """ |
| |
| |
| |
| |
| |
|
|
| def execute_external(func, _waiter): |
| _waiter._outcome = _outcomes.capture(func, *args, **kwargs) |
| if _debug: |
| self.log.debug( |
| f"Execution of external routine done {threading.current_thread()}" |
| ) |
| _waiter.thread_done() |
|
|
| async def wrapper(): |
| waiter = external_waiter() |
| thread = threading.Thread( |
| group=None, |
| target=execute_external, |
| name=func.__qualname__ + "_thread", |
| args=([func, waiter]), |
| kwargs={}, |
| ) |
|
|
| waiter.thread = thread |
| self._pending_threads.append(waiter) |
|
|
| await waiter.event.wait() |
|
|
| return waiter.result |
|
|
| return wrapper() |
|
|
| @staticmethod |
| def create_task(coroutine: Any) -> Task: |
| """Check to see if the given object is a Task or coroutine and if so, return it as a Task.""" |
|
|
| if isinstance(coroutine, Task): |
| return coroutine |
| if isinstance(coroutine, Coroutine): |
| return Task(coroutine) |
| if inspect.iscoroutinefunction(coroutine): |
| raise TypeError( |
| f"Coroutine function {coroutine} should be called prior to being " |
| "scheduled." |
| ) |
| if inspect.isasyncgen(coroutine): |
| raise TypeError( |
| f"{coroutine.__qualname__} is an async generator, not a coroutine. " |
| "You likely used the yield keyword instead of await." |
| ) |
| raise TypeError( |
| f"Attempt to add an object of type {type(coroutine)} to the scheduler, which " |
| f"isn't a coroutine: {coroutine!r}\n" |
| ) |
|
|
| def start_soon(self, task: Union[Coroutine, Task]) -> Task: |
| """ |
| Schedule a task to be run concurrently, starting after the current task yields control. |
| |
| .. versionadded:: 1.5 |
| """ |
|
|
| task = self.create_task(task) |
|
|
| if _debug: |
| self.log.debug(f"Queueing a new task {task!r}") |
|
|
| self._queue(task) |
| return task |
|
|
| def _add_test(self, test_task): |
| """Called by the regression manager to queue the next test""" |
| if self._test is not None: |
| raise InternalError("Test was added while another was in progress") |
|
|
| self._test = test_task |
| self._resume_task_upon( |
| test_task, |
| NullTrigger(name=f"Start {test_task!s}", outcome=_outcomes.Value(None)), |
| ) |
|
|
| |
| |
| |
| |
| |
|
|
| def _trigger_from_started_task(self, result: Task) -> Trigger: |
| if _debug: |
| self.log.debug(f"Joining to already running task: {result}") |
| return result.join() |
|
|
| def _trigger_from_unstarted_task(self, result: Task) -> Trigger: |
| self._queue(result) |
| if _debug: |
| self.log.debug(f"Scheduling unstarted task: {result!r}") |
| return result.join() |
|
|
| def _trigger_from_waitable(self, result: cocotb.triggers.Waitable) -> Trigger: |
| return self._trigger_from_unstarted_task(Task(result._wait())) |
|
|
| def _trigger_from_any(self, result) -> Trigger: |
| """Convert a yielded object into a Trigger instance""" |
| |
|
|
| if isinstance(result, Trigger): |
| return result |
|
|
| if isinstance(result, Task): |
| if not result.has_started(): |
| return self._trigger_from_unstarted_task(result) |
| else: |
| return self._trigger_from_started_task(result) |
|
|
| if inspect.iscoroutine(result): |
| return self._trigger_from_unstarted_task(Task(result)) |
|
|
| if isinstance(result, cocotb.triggers.Waitable): |
| return self._trigger_from_waitable(result) |
|
|
| if inspect.isasyncgen(result): |
| raise TypeError( |
| f"{result.__qualname__} is an async generator, not a coroutine. " |
| "You likely used the yield keyword instead of await." |
| ) |
|
|
| raise TypeError( |
| f"Coroutine yielded an object of type {type(result)}, which the scheduler can't " |
| f"handle: {result!r}\n" |
| ) |
|
|
| def _schedule(self, task, trigger=None): |
| """Schedule a task to execute. |
| |
| Args: |
| task (cocotb.task.Task): The task to schedule. |
| trigger (cocotb.triggers.Trigger): The trigger that caused this |
| task to be scheduled. |
| """ |
| if self._current_task is not None: |
| raise InternalError("_schedule() called while another Task is executing") |
| try: |
| self._current_task = task |
| if trigger is None: |
| send_outcome = _outcomes.Value(None) |
| else: |
| send_outcome = trigger._outcome |
| if _debug: |
| self.log.debug(f"Scheduling with {send_outcome}") |
|
|
| task._trigger = None |
| result = task._advance(send_outcome) |
|
|
| if task.done(): |
| if _debug: |
| self.log.debug(f"{task} completed with {task._outcome}") |
| assert result is None |
| self._unschedule(task) |
|
|
| |
| if self._terminate: |
| return |
|
|
| if not task.done(): |
| if _debug: |
| self.log.debug(f"{task!r} yielded {result} (mode {self._mode})") |
| try: |
| result = self._trigger_from_any(result) |
| except TypeError as exc: |
| |
| |
| result = NullTrigger(outcome=_outcomes.Error(exc)) |
|
|
| self._resume_task_upon(task, result) |
|
|
| |
| |
| |
|
|
| if self._main_thread is threading.current_thread(): |
| for ext in self._pending_threads: |
| ext.thread_start() |
| if _debug: |
| self.log.debug( |
| f"Blocking from {threading.current_thread()} on {ext.thread}" |
| ) |
| state = ext.thread_wait() |
| if _debug: |
| self.log.debug( |
| f"Back from wait on self {threading.current_thread()} with newstate {state}" |
| ) |
| if state == external_state.EXITED: |
| self._pending_threads.remove(ext) |
| self._pending_events.append(ext.event) |
| finally: |
| self._current_task = None |
|
|
| def _finish_test(self, exc): |
| self._abort_test(exc) |
| self._check_termination() |
|
|
| def _abort_test(self, exc): |
| """Force this test to end early, without executing any cleanup. |
| |
| This happens when a background task fails, and is consistent with |
| how the behavior has always been. In future, we may want to behave |
| more gracefully to allow the test body to clean up. |
| |
| `exc` is the exception that the test should report as its reason for |
| aborting. |
| """ |
| if self._test._outcome is not None: |
| raise InternalError("Outcome already has a value, but is being set again.") |
| outcome = _outcomes.Error(exc) |
| if _debug: |
| self._test.log.debug(f"outcome forced to {outcome}") |
| self._test._outcome = outcome |
| self._unschedule(self._test) |
|
|
| def _finish_scheduler(self, exc): |
| """Directly call into the regression manager and end test |
| once we return the sim will close us so no cleanup is needed. |
| """ |
| |
| |
|
|
| if not self._test.done(): |
| self.log.debug("Issue sim closedown result to regression object") |
| self._abort_test(exc) |
| self._handle_result(self._test) |
|
|
| def _cleanup(self): |
| """Clear up all our state. |
| |
| Unprime all pending triggers and kill off any coroutines, stop all externals. |
| """ |
| |
| items = list((k, list(v)) for k, v in self._trigger2tasks.items()) |
|
|
| |
| |
| for trigger, waiting in items[::-1]: |
| for task in waiting: |
| if _debug: |
| self.log.debug(f"Killing {task}") |
| task.kill() |
| assert not self._trigger2tasks |
|
|
| |
| for task in self._scheduling: |
| if _debug: |
| self.log.debug(f"Killing {task}") |
| task.kill() |
| self._scheduling = [] |
|
|
| |
| while self._pending_triggers: |
| trigger = self._pending_triggers.pop(0) |
| if _debug: |
| self.log.debug(f"Unpriming {trigger}") |
| trigger._unprime() |
| assert not self._pending_triggers |
|
|
| |
| |
| |
| while self._pending_tasks: |
| |
| task = self._pending_tasks[0] |
| task.kill() |
|
|
| if self._main_thread is not threading.current_thread(): |
| raise Exception("Cleanup() called outside of the main thread") |
|
|
| for ext in self._pending_threads: |
| self.log.warning(f"Waiting for {ext.thread} to exit") |
|
|