diff options
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 38f86b59..9a2dd8bf 100644 --- a/src/wrapped/wrappedlibc.c +++ b/src/wrapped/wrappedlibc.c @@ -2203,7 +2203,7 @@ EXPORT int my_epoll_pwait2(int epfd, void* events, int maxevents, const struct t { struct epoll_event _events[maxevents]; //AlignEpollEvent(_events, events, maxevents); - #ifdef ANDROID + #if defined(ANDROID) || defined(LA64_ABI_1) // epoll_pwait2 doesn't exist, to tranforming timeout to int, and from nanosecods to milliseconds... int tout = -1; if(timeout) { |