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/include/threads.h | |
| parent | 0359a65a00cbabee67515f53cf58ed7bc894e0ee (diff) | |
| download | box64-3221038bc664158431f64b491800f56955044d91.tar.gz box64-3221038bc664158431f64b491800f56955044d91.zip | |
[DYNAREC] Disabled custom mutex for now
Diffstat (limited to 'src/include/threads.h')
| -rwxr-xr-x | src/include/threads.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/include/threads.h b/src/include/threads.h index d094dc0b..847d4ee6 100755 --- a/src/include/threads.h +++ b/src/include/threads.h @@ -20,9 +20,7 @@ void fini_pthread_helper(box64context_t* context); // 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); -#ifndef DYNAREC //check and unlock if a mutex is locked by current thread (works only for PTHREAD_MUTEX_ERRORCHECK typed mutex) int checkUnlockMutex(void* m); -#endif #endif //_THREADS_H_ \ No newline at end of file |