diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2023-05-10 17:21:14 +0200 |
|---|---|---|
| committer | ptitSeb <sebastien.chev@gmail.com> | 2023-05-10 17:21:14 +0200 |
| commit | 1f4cc1cf884e0c7befdfea601def2291e54459be (patch) | |
| tree | 53f57aeff400515e4a025725d3cd6bde22db0dd2 /src/libtools | |
| parent | 92dd53177f0119c0638c057ea7da5204046846d0 (diff) | |
| download | box64-1f4cc1cf884e0c7befdfea601def2291e54459be.tar.gz box64-1f4cc1cf884e0c7befdfea601def2291e54459be.zip | |
Optimized Exit bridge managment
Diffstat (limited to 'src/libtools')
| -rwxr-xr-x | src/libtools/signals.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libtools/signals.c b/src/libtools/signals.c index 1ea5489a..f3da73a9 100755 --- a/src/libtools/signals.c +++ b/src/libtools/signals.c @@ -1668,7 +1668,7 @@ EXPORT int my_makecontext(x64emu_t* emu, void* ucp, void* fnc, int32_t argc, int } // push the return value --rsp; - *rsp = (uintptr_t)GetExit(); + *rsp = my_context->exit_bridge; u->uc_mcontext.gregs[X64_RSP] = (uintptr_t)rsp; return 0; |