59 path = args[0] |
59 path = args[0] |
60 print(args) |
60 print(args) |
61 return getattr(os, originalName)(path, *args) |
61 return getattr(os, originalName)(path, *args) |
62 return newExecl |
62 return newExecl |
63 |
63 |
|
64 |
64 def patchNewProcessFunctions(multiprocessEnabled, debugClient): |
65 def patchNewProcessFunctions(multiprocessEnabled, debugClient): |
65 """ |
66 """ |
66 Function to patch the process creation functions to support multiprocess |
67 Function to patch the process creation functions to support multiprocess |
67 debugging. |
68 debugging. |
68 |
69 |