HiI was wondering about this while working on profiling my program using the profile module.Say we have the following:@decdef func: blah blah blahWhen profiling the whole program, what would the total time for func represent? The time spent just in the original function or the time spent spent
HiI am trying to get a profile of a program using the profile module. The program itself has some fork() call in the code, but my profile.run() is placed before that fork() call.My question is will the profiler be able to pickup the execution of the child and parent processes? Or just one of those?