diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2023-11-23 18:18:06 +0100 |
|---|---|---|
| committer | ptitSeb <sebastien.chev@gmail.com> | 2023-11-23 18:18:06 +0100 |
| commit | efbf692cca607f91bba9db533916b57df2da579d (patch) | |
| tree | ada91926d81e9aab984c27ce8e0143c7fc72bca5 /src/wrapped/generated/wrappedlibrttypes.h | |
| parent | f81057416b41a11aa17cbcd864ef2a1bb13e102e (diff) | |
| download | box64-efbf692cca607f91bba9db533916b57df2da579d.tar.gz box64-efbf692cca607f91bba9db533916b57df2da579d.zip | |
Fixed some wrapped aio_ functions signature of librt
Diffstat (limited to 'src/wrapped/generated/wrappedlibrttypes.h')
| -rw-r--r-- | src/wrapped/generated/wrappedlibrttypes.h | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/src/wrapped/generated/wrappedlibrttypes.h b/src/wrapped/generated/wrappedlibrttypes.h index 83b18783..b4c69426 100644 --- a/src/wrapped/generated/wrappedlibrttypes.h +++ b/src/wrapped/generated/wrappedlibrttypes.h @@ -11,9 +11,18 @@ #define ADDED_FUNCTIONS() #endif +typedef int32_t (*iFp_t)(void*); +typedef int32_t (*iFip_t)(int32_t, void*); typedef int32_t (*iFupp_t)(uint32_t, void*, void*); +typedef int32_t (*iFipip_t)(int32_t, void*, int32_t, void*); #define SUPER() ADDED_FUNCTIONS() \ - GO(timer_create, iFupp_t) + GO(aio_read, iFp_t) \ + GO(aio_read64, iFp_t) \ + GO(aio_write, iFp_t) \ + GO(aio_write64, iFp_t) \ + GO(aio_cancel, iFip_t) \ + GO(timer_create, iFupp_t) \ + GO(lio_listio, iFipip_t) #endif // __wrappedlibrtTYPES_H_ |