about summary refs log tree commit diff stats
path: root/src/libtools/threads.c
diff options
context:
space:
mode:
authorptitSeb <sebastien.chev@gmail.com>2023-07-09 15:24:27 +0200
committerptitSeb <sebastien.chev@gmail.com>2023-07-09 15:24:27 +0200
commit7cd82d16cef22481b92ed30c297c3304a4b4a9f9 (patch)
tree951b386cf92422c1410e15256d54138636679f59 /src/libtools/threads.c
parentdabbca767f9de4fc4cf68252037de3061592eae2 (diff)
downloadbox64-7cd82d16cef22481b92ed30c297c3304a4b4a9f9.tar.gz
box64-7cd82d16cef22481b92ed30c297c3304a4b4a9f9.zip
Removed useless box64context_t parameter to RunFunction and friend
Diffstat (limited to 'src/libtools/threads.c')
-rwxr-xr-xsrc/libtools/threads.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libtools/threads.c b/src/libtools/threads.c
index d70851f6..90c665e2 100755
--- a/src/libtools/threads.c
+++ b/src/libtools/threads.c
@@ -618,7 +618,7 @@ GO(29)
 static uintptr_t my_key_destructor_fct_##A = 0;  \
 static void my_key_destructor_##A(void* a)    			\
 {                                       		\
-    RunFunction(my_context, my_key_destructor_fct_##A, 1, a);\
+    RunFunction(my_key_destructor_fct_##A, 1, a);\
 }
 SUPER()
 #undef GO
@@ -640,7 +640,7 @@ static void* findkey_destructorFct(void* fct)
 static uintptr_t my_cleanup_routine_fct_##A = 0;  \
 static void my_cleanup_routine_##A(void* a)    			\
 {                                       		\
-    RunFunction(my_context, my_cleanup_routine_fct_##A, 1, a);\
+    RunFunction(my_cleanup_routine_fct_##A, 1, a);\
 }
 SUPER()
 #undef GO