diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2023-07-09 15:24:27 +0200 |
|---|---|---|
| committer | ptitSeb <sebastien.chev@gmail.com> | 2023-07-09 15:24:27 +0200 |
| commit | 7cd82d16cef22481b92ed30c297c3304a4b4a9f9 (patch) | |
| tree | 951b386cf92422c1410e15256d54138636679f59 /src/libtools/threads.c | |
| parent | dabbca767f9de4fc4cf68252037de3061592eae2 (diff) | |
| download | box64-7cd82d16cef22481b92ed30c297c3304a4b4a9f9.tar.gz box64-7cd82d16cef22481b92ed30c297c3304a4b4a9f9.zip | |
Removed useless box64context_t parameter to RunFunction and friend
Diffstat (limited to 'src/libtools/threads.c')
| -rwxr-xr-x | src/libtools/threads.c | 4 |
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 |