about summary refs log tree commit diff stats
path: root/src/include/threads.h
diff options
context:
space:
mode:
authorptitSeb <sebastien.chev@gmail.com>2023-07-08 17:21:49 +0200
committerptitSeb <sebastien.chev@gmail.com>2023-07-08 17:21:49 +0200
commitab2d68ef45c729134d92e9dad0d78c1fa035a489 (patch)
treebd8d00b0d7367eb2523f0abde9ff7b00ba547740 /src/include/threads.h
parentb7a2d59a61809739f86c2840294adb000a40f38f (diff)
downloadbox64-ab2d68ef45c729134d92e9dad0d78c1fa035a489.tar.gz
box64-ab2d68ef45c729134d92e9dad0d78c1fa035a489.zip
Simplyfied internal jmpbuf handling
Diffstat (limited to 'src/include/threads.h')
-rwxr-xr-xsrc/include/threads.h8
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);