0
votes
Is there a way to attach a debugger to a multi-threaded python process?
What platform are you attempting this on? Most debuggers allow you to attach to a running process by using the process id.
You can either output the process id via logging or using something like T …
4
votes
What does the PDB get me while debugging and how do I know it’s working?
To confirm if you're using the provided PDB, CorporateComponent.pdb, during debugging within the Visual Studio IDE review the output window and locate the line indicating that the CorporateComponen …
1
vote
Callstack that has has AV reported I see FunctionName() + some Hex value?
I believe this will be the offset of the instruction from the start of the function.
If you have the assembler (.asm) output for your application, from the compiler, you can map the offset …
1
vote
Debugging causing exceptions?
I'm referring to VS2005 but it should be applicable in your case. If you access the IDE Debug > Exceptions.. menu item you can specify the exception types that the …
0
votes
C++ Parameter’s Value Changes Between Stack Frames in std::vector
I suggest reviewing the C++ options configured for the projects involved. Ensure that they all share the same alignment and run-time settings. Are you building the .DLL involved?
…
