1import os
2
3DEFAULT_GDB_TIMEOUT_SEC = 1
4DEFAULT_TIME_TO_CHECK_FOR_ADDITIONAL_OUTPUT_SEC = 0.2
5USING_WINDOWS = os.name == "nt"
6
7
8class GdbTimeoutError(ValueError):
9    """Raised when no response is recieved from gdb after the timeout has been triggered"""
10
11    pass
12