When you attach

When you attach to a running program, it is immediately suspended. In almost all cases, the program will be suspended in operating system code or in a compiled language run time, and you will be looking at disassembly code. You will probably need to add one or more breakpoints and resume the program to get to a known point in your program.

There are two main reasons for attaching the debugger to a process or already running program:

Attention:

Feedback