diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2021-04-07 15:34:15 +0200 |
|---|---|---|
| committer | ptitSeb <sebastien.chev@gmail.com> | 2021-04-07 15:34:15 +0200 |
| commit | 7e09961ee7ac6841883b68123ad700609d2fd955 (patch) | |
| tree | 67659f8a33a8480d252d0a66aaeed5db2ea6928b /src | |
| parent | 21aded91f059ef480b65835eb03d60c1ddf3e230 (diff) | |
| download | box64-7e09961ee7ac6841883b68123ad700609d2fd955.tar.gz box64-7e09961ee7ac6841883b68123ad700609d2fd955.zip | |
Added 2 _np wrapped function to pthreads
Diffstat (limited to 'src')
| -rwxr-xr-x | src/wrapped/wrappedlibpthread_private.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/wrapped/wrappedlibpthread_private.h b/src/wrapped/wrappedlibpthread_private.h index 87ec246b..8539c551 100755 --- a/src/wrapped/wrappedlibpthread_private.h +++ b/src/wrapped/wrappedlibpthread_private.h @@ -91,6 +91,7 @@ GOM(pthread_kill, iFEpi) // pthread_kill_other_threads_np GO(__pthread_mutexattr_destroy, iFp) GO(pthread_mutexattr_destroy, iFp) +GO(pthread_mutexattr_getkind_np, iFpp) // pthread_mutexattr_getprioceiling // pthread_mutexattr_getprotocol // pthread_mutexattr_getpshared @@ -98,6 +99,7 @@ GO(pthread_mutexattr_destroy, iFp) GO(pthread_mutexattr_gettype, iFpp) GO(__pthread_mutexattr_init, iFp) GO(pthread_mutexattr_init, iFp) +GO(pthread_mutexattr_setkind_np, iFpi) // pthread_mutexattr_setprioceiling GO(pthread_mutexattr_setprotocol, iFpp) GO(pthread_mutexattr_setpshared, iFpi) |