I mean:
def test_thread():
...
while 1:
pykd.go()
...
def main():
th=threading.Thread(target=test_thread)
th.start()
....
#after a while, then I want to launch(or attach) and debug new processes.
#but I can not use pykd.startProcess directly at this time, because the "pykd.go()" is still working in test_thread function, and there are not the same thread