about summary refs log tree commit diff stats
path: root/src
diff options
context:
space:
mode:
authorptitSeb <sebastien.chev@gmail.com>2021-04-04 14:53:37 +0200
committerptitSeb <sebastien.chev@gmail.com>2021-04-04 14:53:37 +0200
commita7b9590f6fbdd5b7eb5642bf59e3d5a2a99ae840 (patch)
tree2ca463ae4470d11cd3569e1c482bd5ccb504da2f /src
parent998a114172569ab441a3aa833f9164bb64244bff (diff)
downloadbox64-a7b9590f6fbdd5b7eb5642bf59e3d5a2a99ae840.tar.gz
box64-a7b9590f6fbdd5b7eb5642bf59e3d5a2a99ae840.zip
Disabled handling of CC opcode for now (ignoring it is better)
Diffstat (limited to 'src')
-rwxr-xr-xsrc/emu/x64int3.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/x64int3.c b/src/emu/x64int3.c
index 73d57deb..17e724bc 100755
--- a/src/emu/x64int3.c
+++ b/src/emu/x64int3.c
@@ -167,7 +167,7 @@ void x64Int3(x64emu_t* emu)
         }
         return;
     }
-    if(my_context->signals[SIGTRAP])
+    if(0 && my_context->signals[SIGTRAP])
         raise(SIGTRAP);
     else
         printf_log(LOG_INFO, "%04d|Warning, ignoring unsupported Int 3 call @%p\n", GetTID(), (void*)R_RIP);