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-10-13 21:23:42 +0200
committerptitSeb <sebastien.chev@gmail.com>2023-10-13 21:23:42 +0200
commit9209e57bd965964b3853d8affecea571e6021b58 (patch)
tree5ce7c260cd0b742675684266906de37e3972b8ae /src/include/threads.h
parent1e1ad7694b59dba4af4e70c978fdb1b2c7d17b5b (diff)
downloadbox64-9209e57bd965964b3853d8affecea571e6021b58.tar.gz
box64-9209e57bd965964b3853d8affecea571e6021b58.zip
Various changes on pthread cancel and tls destructor, should be easier to maintain
Diffstat (limited to 'src/include/threads.h')
-rw-r--r--src/include/threads.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/include/threads.h b/src/include/threads.h
index af58046b..8ed0e4c1 100644
--- a/src/include/threads.h
+++ b/src/include/threads.h
@@ -8,6 +8,7 @@ void CleanStackSize(box64context_t* context);
 
 void init_pthread_helper(void);
 void fini_pthread_helper(box64context_t* context);
+void clean_current_emuthread(void);
 
 // prepare an "emuthread structure" in pet and return address of function pointer for a "thread creation routine"
 void* my_prepare_thread(x64emu_t *emu, void* f, void* arg, int ssize, void** pet);