dbghelp Questions
3
I marked up the following code:
#include "stdafx.h"
#include <process.h>
#include <iostream>
#include <Windows.h>
#include <dbghelp.h>
using namespace std;
#defi...
Riannon asked 17/3, 2014 at 23:37
2
Solved
I've got a whole bunch of minidumps which were recorded during the runtime of an application through MiniDumpWriteDump. The minidumps were created on a machine with a different OS version than my d...
Solley asked 6/7, 2011 at 10:30
3
Solved
I'm trying to call SymLoadModuleEx to load the symbols from a PDB file and then use SymFromAddr to look up symbols from that PDB. However, I can't figure out what to pass for the parameters BaseOfD...
5
I've used minidumps on many game projects over the years and they seem to have about a 50% chance of having a valid call stack. What can I do to make them have better call stacks?
I've tried putti...
1
Solved
I am trying to capture a stack trace on exceptions using the following code:
#include "stdafx.h"
#include <process.h>
#include <iostream>
#include <Windows.h>
#include "dbghelp.h...
Trump asked 18/3, 2014 at 13:38
2
Solved
I have the following code:
#include "stdafx.h"
#include <process.h>
#include <iostream>
#include <Windows.h>
#include "dbghelp.h"
using namespace std;
int LogStackTrace()
{
vo...
Phosphorylase asked 17/3, 2014 at 20:59
1
Solved
OlyDbg version 2 was recently released. It now supports using the Microsoft Symbol Server for debugging:
It supports Microsoft compilers via dbghelp.dll. New is support for symbol server, stack ...
1
Solved
How do i get the EXCEPTION_POINTERS, i.e. both:
PEXCEPTION_RECORD and
PCONTEXT
data during an EExternal exception?
Background
When Windows throws an exception, it passes a PEXCEPTION_POINTER...
1
Solved
For background, I have come across this porting a medium-sized linux codebase (compiling into a giant .so) to x64 windows (compiling into a .dll). I have had linker trouble.
As a minimal testcase,...
2
Solved
2
Solved
I use Jochen Kalmbach's StackWalker class from CodeProject, to produce a stacktrace when an exception occurs in my DLL.
It relies on DbgHelp.dll
Is DbgHelp.dll built-in to Windows Vista, WS2008,...
Cabrilla asked 25/10, 2009 at 2:12
4
Solved
I have some native (as in /SUBSYSTEM:NATIVE) Windows programs that I'd like to generate minidumps for in case they crash. Normally, I'd use dbghelp.dll, but since native processes can only use func...
3
Solved
What is the format (schema) of .NET PDB files? I'd like to parse the information out of these files so that I can display the correct lines of code (line numbers) in a debugging application.
3
How do I obtain a stack trace of addresses on Windows without using dbghelp.dll?
I don't need to know what the symbols or function names associated with the addresses, I just want the list of addr...
Newhall asked 24/12, 2008 at 23:16
3
Solved
I currently capture MiniDumps of unhandled exceptions using SetUnhandledExceptionFilter however at times I am getting "R6025: pure virtual function".
I understand how a pure virtual function call ...
1
© 2022 - 2024 — McMap. All rights reserved.