diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2023-07-08 17:21:49 +0200 |
|---|---|---|
| committer | ptitSeb <sebastien.chev@gmail.com> | 2023-07-08 17:21:49 +0200 |
| commit | ab2d68ef45c729134d92e9dad0d78c1fa035a489 (patch) | |
| tree | bd8d00b0d7367eb2523f0abde9ff7b00ba547740 /src/include/threads.h | |
| parent | b7a2d59a61809739f86c2840294adb000a40f38f (diff) | |
| download | box64-ab2d68ef45c729134d92e9dad0d78c1fa035a489.tar.gz box64-ab2d68ef45c729134d92e9dad0d78c1fa035a489.zip | |
Simplyfied internal jmpbuf handling
Diffstat (limited to 'src/include/threads.h')
| -rwxr-xr-x | src/include/threads.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src/include/threads.h b/src/include/threads.h index ec133d16..af58046b 100755 --- a/src/include/threads.h +++ b/src/include/threads.h @@ -4,16 +4,8 @@ typedef struct box64context_s box64context_t; typedef struct x64emu_s x64emu_t; -typedef struct emu_jmpbuf_s { - x64emu_t* emu; - void* jmpbuf; - int jmpbuf_ok; -} emu_jmpbuf_t; - void CleanStackSize(box64context_t* context); -emu_jmpbuf_t* GetJmpBuf(void); - void init_pthread_helper(void); void fini_pthread_helper(box64context_t* context); |