From a7b9590f6fbdd5b7eb5642bf59e3d5a2a99ae840 Mon Sep 17 00:00:00 2001 From: ptitSeb Date: Sun, 4 Apr 2021 14:53:37 +0200 Subject: Disabled handling of CC opcode for now (ignoring it is better) --- src/emu/x64int3.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') 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); -- cgit 1.4.1