diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2025-03-04 14:11:42 +0100 |
|---|---|---|
| committer | ptitSeb <sebastien.chev@gmail.com> | 2025-03-04 14:11:42 +0100 |
| commit | 1bf4851cf6f3a97098d9e9ce9f51b4815eb7fd89 (patch) | |
| tree | 8c35c9ae4af8a3aed884b4c09bbc98593747ed37 /src/emu | |
| parent | 2129e98b0e1ad3bc4f50698c61ca557146d26b5d (diff) | |
| download | box64-1bf4851cf6f3a97098d9e9ce9f51b4815eb7fd89.tar.gz box64-1bf4851cf6f3a97098d9e9ce9f51b4815eb7fd89.zip | |
[WRAPPER] Added epoll_pwait2 wrapped function
Diffstat (limited to 'src/emu')
| -rw-r--r-- | src/emu/x64printer.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/emu/x64printer.c b/src/emu/x64printer.c index 18948ea8..b815db74 100644 --- a/src/emu/x64printer.c +++ b/src/emu/x64printer.c @@ -6406,6 +6406,8 @@ void x64Print(x64emu_t* emu, char* buff, size_t buffsz, const char* func, int ti #if defined(NOALIGN) } else if (w == iFipiip) { snprintf(buff, buffsz, "%04d|%p: Calling %s(%" PRIi32 ", %" PRIp ", %" PRIi32 ", %" PRIi32 ", %" PRIp ")", tid, *(void**)(R_RSP), func, (int32_t)R_RDI, (void*)R_RSI, (int32_t)R_RDX, (int32_t)R_RCX, (void*)R_R8); + } else if (w == iFipipp) { + snprintf(buff, buffsz, "%04d|%p: Calling %s(%" PRIi32 ", %" PRIp ", %" PRIi32 ", %" PRIp ", %" PRIp ")", tid, *(void**)(R_RSP), func, (int32_t)R_RDI, (void*)R_RSI, (int32_t)R_RDX, (void*)R_RCX, (void*)R_R8); #endif #if !defined(NOALIGN) } else if (w == iFELp) { @@ -6418,6 +6420,8 @@ void x64Print(x64emu_t* emu, char* buff, size_t buffsz, const char* func, int ti snprintf(buff, buffsz, "%04d|%p: Calling %s(%" PRIi32 ", %" PRIp ", %" PRIi32 ", %" PRIi32 ")", tid, *(void**)(R_RSP), func, (int32_t)R_RDI, (void*)R_RSI, (int32_t)R_RDX, (int32_t)R_RCX); } else if (w == iFEipiip) { snprintf(buff, buffsz, "%04d|%p: Calling %s(%" PRIi32 ", %" PRIp ", %" PRIi32 ", %" PRIi32 ", %" PRIp ")", tid, *(void**)(R_RSP), func, (int32_t)R_RDI, (void*)R_RSI, (int32_t)R_RDX, (int32_t)R_RCX, (void*)R_R8); + } else if (w == iFEipipp) { + snprintf(buff, buffsz, "%04d|%p: Calling %s(%" PRIi32 ", %" PRIp ", %" PRIi32 ", %" PRIp ", %" PRIp ")", tid, *(void**)(R_RSP), func, (int32_t)R_RDI, (void*)R_RSI, (int32_t)R_RDX, (void*)R_RCX, (void*)R_R8); #endif #if !defined(STATICBUILD) } else if (w == iFlip) { |