diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2023-04-22 10:12:09 +0200 |
|---|---|---|
| committer | ptitSeb <sebastien.chev@gmail.com> | 2023-04-22 10:12:09 +0200 |
| commit | c74d8bb6028ec1d16aef04f7ae4cbc6bca34a044 (patch) | |
| tree | e232c29f770a0506251360d671f387b37f40abba /src/include | |
| parent | ec7844072f5ad5a74de9f4a42c91aefc2f174691 (diff) | |
| download | box64-c74d8bb6028ec1d16aef04f7ae4cbc6bca34a044.tar.gz box64-c74d8bb6028ec1d16aef04f7ae4cbc6bca34a044.zip | |
Fixed and improved __cxa_atexit handling
Diffstat (limited to 'src/include')
| -rwxr-xr-x | src/include/x64emu.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/x64emu.h b/src/include/x64emu.h index 17252b68..c7f2e20e 100755 --- a/src/include/x64emu.h +++ b/src/include/x64emu.h @@ -47,8 +47,8 @@ void StopEmu(x64emu_t* emu, const char* reason); void PushExit(x64emu_t* emu); void* GetExit(); void EmuCall(x64emu_t* emu, uintptr_t addr); -void AddCleanup(x64emu_t *emu, void *p); -void AddCleanup1Arg(x64emu_t *emu, void *p, void* a); +void AddCleanup(x64emu_t *emu, void *p, void* dso_handle); +void AddCleanup1Arg(x64emu_t *emu, void *p, void* a, void* dso_handle); void CallCleanup(x64emu_t *emu, void* p); void CallAllCleanup(x64emu_t *emu); void UnimpOpcode(x64emu_t* emu); |