6 """ |
6 """ |
7 Module implementing the multithreaded version of the debug client. |
7 Module implementing the multithreaded version of the debug client. |
8 """ |
8 """ |
9 |
9 |
10 import thread |
10 import thread |
|
11 import sys |
11 |
12 |
12 from AsyncIO import * |
13 from AsyncIO import AsyncIO |
13 from DebugThread import * |
14 from DebugThread import DebugThread |
14 from DebugBase import * |
|
15 import DebugClientBase |
15 import DebugClientBase |
16 |
16 |
17 |
17 |
18 def _debugclient_start_new_thread(target, args, kwargs={}): |
18 def _debugclient_start_new_thread(target, args, kwargs={}): |
19 """ |
19 """ |