exec() handling

When an application process calls exec(), a new program is loaded to replace the current program.

The debugger suspends program execution at this point and opens a dialog box, in which you can choose to debug program initialization. The name of the new program is shown, but you cannot change the name. After you select OK, the debugger stops at the first instruction of the new program's run time (if you asked to debug program initialization), or at the first instruction or statement in the new program.


Feedback