diff options
| author | Krzysztof Aleksander Pyrkosz <49622294+kpyrkosz@users.noreply.github.com> | 2025-04-05 13:50:56 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-04-05 15:50:56 +0200 |
| commit | f4f868831a920ae5b03688810af5f7e599d5a820 (patch) | |
| tree | a4b1373128ce510a31977e942e5832a16323b09a /src | |
| parent | 1e89ccb17e0c10161e60cc1979c8a656f73bb50f (diff) | |
| download | box64-f4f868831a920ae5b03688810af5f7e599d5a820.tar.gz box64-f4f868831a920ae5b03688810af5f7e599d5a820.zip | |
Corrected arguments of my_epoll_pwait2 (#2501)
Diffstat (limited to 'src')
| -rw-r--r-- | src/wrapped/wrappedlibc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wrapped/wrappedlibc.c b/src/wrapped/wrappedlibc.c index 68169d2f..7eb5aa9e 100644 --- a/src/wrapped/wrappedlibc.c +++ b/src/wrapped/wrappedlibc.c @@ -2201,7 +2201,7 @@ EXPORT int32_t my_epoll_pwait(x64emu_t* emu, int32_t epfd, void* events, int32_t UnalignEpollEvent(events, _events, ret); return ret; } -EXPORT int my_epoll_pwait2(int epfd, void* events, int maxevents, struct timespec *timeout, sigset_t * sigmask) +EXPORT int my_epoll_pwait2(x64emu_t* emu, int epfd, void* events, int maxevents, struct timespec *timeout, sigset_t * sigmask) { struct epoll_event _events[maxevents]; //AlignEpollEvent(_events, events, maxevents); |