Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEugene Tarassov2015-12-11 21:44:34 +0000
committerEugene Tarassov2015-12-11 21:44:34 +0000
commit3b523b1d9909883fc9549f6c26db419504635a03 (patch)
treeadb2a61329a089573d8552a7f1f6ee44f0565896 /agent/system
parent4498feb22da8f23b02053f6c8ea7b84d7337dd87 (diff)
downloadorg.eclipse.tcf.agent-3b523b1d9909883fc9549f6c26db419504635a03.tar.gz
org.eclipse.tcf.agent-3b523b1d9909883fc9549f6c26db419504635a03.tar.xz
org.eclipse.tcf.agent-3b523b1d9909883fc9549f6c26db419504635a03.zip
TCF Agent: more of x86 disassembler
Diffstat (limited to 'agent/system')
-rw-r--r--agent/system/Windows/tcf/context-win32.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/agent/system/Windows/tcf/context-win32.c b/agent/system/Windows/tcf/context-win32.c
index 350bfebd..b671fe88 100644
--- a/agent/system/Windows/tcf/context-win32.c
+++ b/agent/system/Windows/tcf/context-win32.c
@@ -1441,6 +1441,7 @@ int context_get_breakpoint_status(ContextBreakpoint * bp, const char *** names,
int context_get_isa(Context * ctx, ContextAddress addr, ContextISA * isa) {
ContextExtensionWin32 * ext = EXT(ctx->mem);
memset(isa, 0, sizeof(ContextISA));
+ isa->max_instruction_size = 15;
if (ext->debug_state->wow64) {
isa->def = "386";
}

Back to the top