mirror of
https://github.com/opnsense/src.git
synced 2026-04-24 07:37:25 -04:00
Change Linux epoll_pwait syscall definition to match Linux actual one.
MFC after: 1 month
This commit is contained in:
parent
80c7315d17
commit
f8ae1bb64d
3 changed files with 6 additions and 3 deletions
|
|
@ -473,7 +473,8 @@
|
|||
280 AUE_FUTIMESAT STD { int linux_utimensat(l_int dfd, const char *pathname, \
|
||||
const struct l_timespec *times, l_int flags); }
|
||||
281 AUE_NULL STD { int linux_epoll_pwait(l_int epfd, struct epoll_event *events, \
|
||||
l_int maxevents, l_int timeout, l_sigset_t *mask); }
|
||||
l_int maxevents, l_int timeout, l_sigset_t *mask, \
|
||||
l_size_t sigsetsize); }
|
||||
282 AUE_NULL STD { int linux_signalfd(void); }
|
||||
283 AUE_NULL STD { int linux_timerfd_create(l_int clockid, l_int flags); }
|
||||
284 AUE_NULL STD { int linux_eventfd(l_uint initval); }
|
||||
|
|
|
|||
|
|
@ -533,7 +533,8 @@
|
|||
; linux 2.6.19:
|
||||
318 AUE_NULL STD { int linux_getcpu(void); }
|
||||
319 AUE_NULL STD { int linux_epoll_pwait(l_int epfd, struct epoll_event *events, \
|
||||
l_int maxevents, l_int timeout, l_sigset_t *mask); }
|
||||
l_int maxevents, l_int timeout, l_sigset_t *mask, \
|
||||
l_size_t sigsetsize); }
|
||||
; linux 2.6.22:
|
||||
320 AUE_FUTIMESAT STD { int linux_utimensat(l_int dfd, const char *pathname, \
|
||||
const struct l_timespec *times, l_int flags); }
|
||||
|
|
|
|||
|
|
@ -541,7 +541,8 @@
|
|||
; linux 2.6.19:
|
||||
318 AUE_NULL STD { int linux_getcpu(void); }
|
||||
319 AUE_NULL STD { int linux_epoll_pwait(l_int epfd, struct epoll_event *events, \
|
||||
l_int maxevents, l_int timeout, l_sigset_t *mask); }
|
||||
l_int maxevents, l_int timeout, l_sigset_t *mask, \
|
||||
l_size_t sigsetsize); }
|
||||
; linux 2.6.22:
|
||||
320 AUE_FUTIMESAT STD { int linux_utimensat(l_int dfd, const char *pathname, \
|
||||
const struct l_timespec *times, l_int flags); }
|
||||
|
|
|
|||
Loading…
Reference in a new issue