We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 2444e15 + e15f590 commit 87f530cCopy full SHA for 87f530c
.gitignore
@@ -10,4 +10,5 @@ plugins
10
build
11
dist
12
gdbfrontend.egg-info
13
-mingw64
+mingw64
14
+.DS_Store
api/globalvars.py
@@ -8,6 +8,7 @@
8
# Licensed under GNU/GPLv3
9
# Copyright (C) 2019, Oğuzhan Eroğlu (https://oguzhaneroglu.com/) <[email protected]>
+import sys
import threading
import multiprocessing
@@ -21,7 +22,8 @@
21
22
inferior_run_times = {}
23
step_time = False
24
is_enhanced_collabration = False
-changed_registers = multiprocessing.Manager().dict()
25
+if sys.platform != "darwin" or __name__ == "__main__":
26
+ changed_registers = multiprocessing.Manager().dict()
27
dont_emit_until_stop_or_exit = False
28
29
collabration_state = {
0 commit comments