diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2024-07-12 17:35:47 +0200 |
|---|---|---|
| committer | ptitSeb <sebastien.chev@gmail.com> | 2024-07-12 17:35:47 +0200 |
| commit | ebf698fdb67ea1641429aed4bc1d68da511fb51f (patch) | |
| tree | 1526f8c1256fc2c10ea5fc4f5a0c4453b7e3b179 | |
| parent | 9d089f9b188fa41562d91c05a63cd5c61536a90d (diff) | |
| download | box64-ebf698fdb67ea1641429aed4bc1d68da511fb51f.tar.gz box64-ebf698fdb67ea1641429aed4bc1d68da511fb51f.zip | |
Removed debug leftover
| -rw-r--r-- | src/libtools/signals.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libtools/signals.c b/src/libtools/signals.c index 9fdb0e94..05ba2264 100644 --- a/src/libtools/signals.c +++ b/src/libtools/signals.c @@ -1266,7 +1266,7 @@ void my_sigactionhandler_oldcode(int32_t sig, int simple, siginfo_t* info, void #undef GO for(int i=0; i<6; ++i) emu->segs_serial[i] = 0; - printf_log(/*LOG_DEBUG*/LOG_INFO, "Context has been changed in Sigactionhanlder, doing siglongjmp to resume emu at %p, RSP=%p\n", (void*)R_RIP, (void*)R_RSP); + printf_log(LOG_DEBUG, "Context has been changed in Sigactionhanlder, doing siglongjmp to resume emu at %p, RSP=%p\n", (void*)R_RIP, (void*)R_RSP); if(old_code) *old_code = -1; // re-init the value to allow another segfault at the same place if(used_stack) // release stack @@ -1318,7 +1318,7 @@ void my_sigactionhandler_oldcode(int32_t sig, int simple, siginfo_t* info, void GO(FS); #undef GO - printf_log(/*LOG_DEBUG*/LOG_INFO, "Sigactionhanlder main function returned (exit=%d, restorer=%p)\n", exits, (void*)restorer); + printf_log(LOG_DEBUG, "Sigactionhanlder main function returned (exit=%d, restorer=%p)\n", exits, (void*)restorer); if(exits) { //relockMutex(Locks); // the thread will exit, so no relock there #ifdef DYNAREC |