freaking1 / crashpad

Automatically exported from code.google.com/p/crashpad
0 stars 0 forks source link

Add memory map information to minidump files #20

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
We should capture memory map information in snapshots and minidump files.

Windows’ dbghelp.h (but not currently Crashpad’s) defines 
MINIDUMP_MEMORY_INFO_LIST composed of MINIDUMP_MEMORY_INFO entries:

https://msdn.microsoft.com/en-us/library/windows/desktop/ms680385(v=vs.85).aspx
https://msdn.microsoft.com/en-us/library/windows/desktop/ms680386(v=vs.85).aspx

These types certainly make sense on Windows. For other platforms, we should 
begin with these types, and extend as necessary, if necessary.

Original issue reported on code.google.com by mark@chromium.org on 25 Mar 2015 at 6:26

GoogleCodeExporter commented 8 years ago
I ported the MEMORY_INFO structs to Breakpad a while back FYI:
https://code.google.com/p/google-breakpad/source/browse/trunk/src/google_breakpa
d/common/minidump_format.h#817

Original comment by ted.mielczarek on 8 May 2015 at 4:38