Skip to content
This repository was archived by the owner on Dec 23, 2021. It is now read-only.

Commit ca7d7ea

Browse files
committed
debugger work
1 parent 5ab2a1b commit ca7d7ea

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

src/common/debugger_communication_client.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -97,3 +97,9 @@ def disconnect_socket():
9797
print("disconnecting here!")
9898
sio.disconnect()
9999

100+
import signal
101+
102+
def handler(signum, frame):
103+
print('Signal handler called with signal', signum)
104+
105+
signal.signal(signal.SIGABRT, handler)

0 commit comments

Comments
 (0)