Changes between Version 1 and Version 2 of Debugging With Visual Studio
- Timestamp:
- Aug 5, 2010, 9:07:14 AM (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Debugging With Visual Studio
v1 v2 17 17 }}} 18 18 19 Note that you usually won't be able to pass a variable name as the parameter to CFShow, as the Immediate window will get confused and think you're specifying a symbol in CoreFoundation.dll rather than whatever code you're debugging. It's usually easiest just to pass the address of the object directly as above. 20 19 21 = Debugging Multi-Process Applications = 20 22 You can attach a single debugger to more than one process. To do this, launch or attach to the first process, then use `Tools > Attach to Process…` or `Ctrl+Alt+P` to attach to the second process. Your breakpoints will apply to both processes.