Skip to content
Snippets Groups Projects
Commit 138cb84b authored by André Zwing's avatar André Zwing Committed by Alexandre Julliard
Browse files

dbghelp: Add arm_fetch_minidump_thread implementation.

parent ad175df2
No related branches found
No related tags found
No related merge requests found
......@@ -224,8 +224,16 @@ static const char* arm_fetch_regname(unsigned regno)
static BOOL arm_fetch_minidump_thread(struct dump_context* dc, unsigned index, unsigned flags, const CONTEXT* ctx)
{
FIXME("NIY\n");
return FALSE;
if (ctx->ContextFlags && (flags & ThreadWriteInstructionWindow))
{
/* FIXME: crop values across module boundaries, */
#ifdef __arm__
ULONG base = ctx->Pc <= 0x80 ? 0 : ctx->Pc - 0x80;
minidump_add_memory_block(dc, base, ctx->Pc + 0x80 - base, 0);
#endif
}
return TRUE;
}
static BOOL arm_fetch_minidump_module(struct dump_context* dc, unsigned index, unsigned flags)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment