diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2023-03-25 10:38:03 +0000 |
|---|---|---|
| committer | ptitSeb <sebastien.chev@gmail.com> | 2023-03-25 10:38:03 +0000 |
| commit | f197e750b623469d65d00d308ea182e5693dfa08 (patch) | |
| tree | 9515504c73223cbbb1b8aa4e3fc066370809cc0b /src/wrapped/wrappedlibpthread_private.h | |
| parent | 206bc9afb659eeb4e8393170e0dc8bcb87792c3c (diff) | |
| download | box64-f197e750b623469d65d00d308ea182e5693dfa08.tar.gz box64-f197e750b623469d65d00d308ea182e5693dfa08.zip | |
Added some wrapped functions in pthread
Diffstat (limited to 'src/wrapped/wrappedlibpthread_private.h')
| -rwxr-xr-x | src/wrapped/wrappedlibpthread_private.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/wrapped/wrappedlibpthread_private.h b/src/wrapped/wrappedlibpthread_private.h index bfb3fdea..fec8b56c 100755 --- a/src/wrapped/wrappedlibpthread_private.h +++ b/src/wrapped/wrappedlibpthread_private.h @@ -150,6 +150,7 @@ GO(pthread_mutexattr_getkind_np, iFpp) GO(pthread_mutexattr_getprotocol, iFpp) // pthread_mutexattr_getpshared // pthread_mutexattr_getrobust_np +GO(pthread_mutexattr_getrobust, iFpp) GO(pthread_mutexattr_gettype, iFpp) GO(__pthread_mutexattr_init, iFp) GO(pthread_mutexattr_init, iFp) @@ -158,6 +159,7 @@ GO(pthread_mutexattr_setkind_np, iFpi) GO(pthread_mutexattr_setprotocol, iFpi) GO(pthread_mutexattr_setpshared, iFpi) // pthread_mutexattr_setrobust_np +GO(pthread_mutexattr_setrobust, iFpi) GO(__pthread_mutexattr_settype, iFpi) GO(pthread_mutexattr_settype, iFpi) #else @@ -167,6 +169,7 @@ GOM(pthread_mutexattr_getkind_np, iFEpp) // pthread_mutexattr_getprioceiling GOM(pthread_mutexattr_getprotocol, iFEpp) // pthread_mutexattr_getpshared +GOM(pthread_mutexattr_getrobust, iFEpp) // pthread_mutexattr_getrobust_np GOM(pthread_mutexattr_gettype, iFEpp) GOM(__pthread_mutexattr_init, iFEp) @@ -175,11 +178,13 @@ GOM(pthread_mutexattr_setkind_np, iFEpi) // pthread_mutexattr_setprioceiling GOM(pthread_mutexattr_setprotocol, iFEpi) GOM(pthread_mutexattr_setpshared, iFEpi) +GOM(pthread_mutexattr_setrobust, iFEpi) // pthread_mutexattr_setrobust_np GOM(__pthread_mutexattr_settype, iFEpi) GOM(pthread_mutexattr_settype, iFEpi) #endif // pthread_mutex_consistent_np +GO(pthread_mutex_consistent, iFp) GO(__pthread_mutex_destroy, iFp) GO(pthread_mutex_destroy, iFp) // pthread_mutex_getprioceiling |