Follow parent
| The debugger ignores the fork and follows the parent. This is the default behavior.
|
Follow child
| The debugger switches to debugging the forked child. The parent continues running as if it had been detached, and the child process is suspended as if it had been attached. Use Go or Step Into to execute the child process.
|
Follow both
| A second debugging session launches to debug the child process, and becomes the current session. The parent's debugging session remains as an active process. The child process is suspended as if it had been attached.
|