Skip to content

Commit 87f530c

Browse files
committed
Merge branch 'master' of github.com:rohanrhu/gdb-frontend
2 parents 2444e15 + e15f590 commit 87f530c

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,5 @@ plugins
1010
build
1111
dist
1212
gdbfrontend.egg-info
13-
mingw64
13+
mingw64
14+
.DS_Store

api/globalvars.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
# Licensed under GNU/GPLv3
99
# Copyright (C) 2019, Oğuzhan Eroğlu (https://oguzhaneroglu.com/) <[email protected]>
1010

11+
import sys
1112
import threading
1213
import multiprocessing
1314

@@ -21,7 +22,8 @@
2122
inferior_run_times = {}
2223
step_time = False
2324
is_enhanced_collabration = False
24-
changed_registers = multiprocessing.Manager().dict()
25+
if sys.platform != "darwin" or __name__ == "__main__":
26+
changed_registers = multiprocessing.Manager().dict()
2527
dont_emit_until_stop_or_exit = False
2628

2729
collabration_state = {

0 commit comments

Comments
 (0)