diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2024-08-30 13:22:38 +0200 |
|---|---|---|
| committer | ptitSeb <sebastien.chev@gmail.com> | 2024-08-30 13:22:48 +0200 |
| commit | 3fb50522232028e55ea97ccbc9a6bd55b031ff08 (patch) | |
| tree | c72aa2496be3fd1a4ebf3638f26d06e549da1f8d /src/wrapped32/generated/wrappedlibpthreadtypes32.h | |
| parent | 62b93a0785802120250423fcc4acae9a51555126 (diff) | |
| download | box64-3fb50522232028e55ea97ccbc9a6bd55b031ff08.tar.gz box64-3fb50522232028e55ea97ccbc9a6bd55b031ff08.zip | |
[BOX32] More 32bits wrapped functions and fixes
Diffstat (limited to 'src/wrapped32/generated/wrappedlibpthreadtypes32.h')
| -rw-r--r-- | src/wrapped32/generated/wrappedlibpthreadtypes32.h | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/src/wrapped32/generated/wrappedlibpthreadtypes32.h b/src/wrapped32/generated/wrappedlibpthreadtypes32.h index ca45f0a4..256839dc 100644 --- a/src/wrapped32/generated/wrappedlibpthreadtypes32.h +++ b/src/wrapped32/generated/wrappedlibpthreadtypes32.h @@ -25,6 +25,7 @@ typedef int32_t (*iFpup_t)(void*, uint32_t, void*); typedef int32_t (*iFppu_t)(void*, void*, uint32_t); typedef int32_t (*iFppL_t)(void*, void*, uintptr_t); typedef int32_t (*iFppp_t)(void*, void*, void*); +typedef int32_t (*iFppLL_t)(void*, void*, uintptr_t, uintptr_t); typedef int32_t (*iFhppp_t)(uintptr_t, void*, void*, void*); #define SUPER() ADDED_FUNCTIONS() \ @@ -38,8 +39,11 @@ typedef int32_t (*iFhppp_t)(uintptr_t, void*, void*, void*); GO(__pthread_mutex_unlock, iFp_t) \ GO(pthread_attr_destroy, iFp_t) \ GO(pthread_attr_init, iFp_t) \ + GO(pthread_cond_broadcast, iFp_t) \ GO(pthread_cond_broadcast@GLIBC_2.0, iFp_t) \ + GO(pthread_cond_destroy, iFp_t) \ GO(pthread_cond_destroy@GLIBC_2.0, iFp_t) \ + GO(pthread_cond_signal, iFp_t) \ GO(pthread_cond_signal@GLIBC_2.0, iFp_t) \ GO(pthread_mutex_destroy, iFp_t) \ GO(pthread_mutex_lock, iFp_t) \ @@ -73,6 +77,7 @@ typedef int32_t (*iFhppp_t)(uintptr_t, void*, void*, void*); GO(pthread_attr_getstacksize, iFpp_t) \ GO(pthread_attr_setschedparam, iFpp_t) \ GO(pthread_attr_setstackaddr, iFpp_t) \ + GO(pthread_cond_init, iFpp_t) \ GO(pthread_cond_init@GLIBC_2.0, iFpp_t) \ GO(pthread_cond_wait, iFpp_t) \ GO(pthread_cond_wait@GLIBC_2.0, iFpp_t) \ @@ -92,8 +97,8 @@ typedef int32_t (*iFhppp_t)(uintptr_t, void*, void*, void*); GO(__pthread_atfork, iFppp_t) \ GO(pthread_atfork, iFppp_t) \ GO(pthread_attr_getstack, iFppp_t) \ - GO(pthread_cond_timedwait, iFppp_t) \ - GO(pthread_cond_timedwait@GLIBC_2.0, iFppp_t) \ + GO(pthread_cond_timedwait, iFppLL_t) \ + GO(pthread_cond_timedwait@GLIBC_2.0, iFppLL_t) \ GO(pthread_create, iFhppp_t) #endif // __wrappedlibpthreadTYPES32_H_ |