diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2023-05-07 14:12:16 +0200 |
|---|---|---|
| committer | ptitSeb <sebastien.chev@gmail.com> | 2023-05-07 14:12:16 +0200 |
| commit | 3221038bc664158431f64b491800f56955044d91 (patch) | |
| tree | 62506b19bd7f83b2d489992ca50c22408540c9f5 /src/libtools/threads.c | |
| parent | 0359a65a00cbabee67515f53cf58ed7bc894e0ee (diff) | |
| download | box64-3221038bc664158431f64b491800f56955044d91.tar.gz box64-3221038bc664158431f64b491800f56955044d91.zip | |
[DYNAREC] Disabled custom mutex for now
Diffstat (limited to 'src/libtools/threads.c')
| -rwxr-xr-x | src/libtools/threads.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/libtools/threads.c b/src/libtools/threads.c index 812e1943..ebf3d669 100755 --- a/src/libtools/threads.c +++ b/src/libtools/threads.c @@ -1131,7 +1131,6 @@ void fini_pthread_helper(box64context_t* context) } } -#ifndef DYNAREC int checkUnlockMutex(void* m) { pthread_mutex_t* mutex = (pthread_mutex_t*)m; @@ -1141,4 +1140,3 @@ int checkUnlockMutex(void* m) } return 0; } -#endif |