diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2023-10-13 21:23:42 +0200 |
|---|---|---|
| committer | ptitSeb <sebastien.chev@gmail.com> | 2023-10-13 21:23:42 +0200 |
| commit | 9209e57bd965964b3853d8affecea571e6021b58 (patch) | |
| tree | 5ce7c260cd0b742675684266906de37e3972b8ae /src/wrapped/generated/wrappedlibpthreadtypes.h | |
| parent | 1e1ad7694b59dba4af4e70c978fdb1b2c7d17b5b (diff) | |
| download | box64-9209e57bd965964b3853d8affecea571e6021b58.tar.gz box64-9209e57bd965964b3853d8affecea571e6021b58.zip | |
Various changes on pthread cancel and tls destructor, should be easier to maintain
Diffstat (limited to 'src/wrapped/generated/wrappedlibpthreadtypes.h')
| -rw-r--r-- | src/wrapped/generated/wrappedlibpthreadtypes.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/wrapped/generated/wrappedlibpthreadtypes.h b/src/wrapped/generated/wrappedlibpthreadtypes.h index 95c1c73e..ad0ad8e2 100644 --- a/src/wrapped/generated/wrappedlibpthreadtypes.h +++ b/src/wrapped/generated/wrappedlibpthreadtypes.h @@ -12,6 +12,7 @@ #endif typedef void (*vFp_t)(void*); +typedef int32_t (*iFL_t)(uintptr_t); typedef int32_t (*iFp_t)(void*); typedef void (*vFpi_t)(void*, int32_t); typedef int32_t (*iFLp_t)(uintptr_t, void*); @@ -30,6 +31,7 @@ typedef int32_t (*iFpppp_t)(void*, void*, void*, void*); GO(__pthread_register_cancel, vFp_t) \ GO(__pthread_unregister_cancel, vFp_t) \ GO(__pthread_unwind_next, vFp_t) \ + GO(pthread_key_delete, iFL_t) \ GO(__pthread_mutexattr_destroy, iFp_t) \ GO(__pthread_mutexattr_init, iFp_t) \ GO(pthread_attr_destroy, iFp_t) \ |