(process)
| 104 | |
| 105 | |
| 106 | def join_process(process): |
| 107 | # Since multiprocessing.Process has the same API than threading.Thread |
| 108 | # (join() and is_alive(), the support function can be reused |
| 109 | threading_helper.join_thread(process) |
| 110 | |
| 111 | |
| 112 | if os.name == "posix": |
no test coverage detected
searching dependent graphs…