mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-23 21:49:31 +02:00
* fix for Mantis #36895: the new epoll_pwait was missing the size parameter for the sigmask parameter
git-svn-id: trunk@45208 -
This commit is contained in:
parent
4faf56353e
commit
2840e5e1fd
@ -642,7 +642,7 @@ end;
|
||||
function epoll_pwait(epfd: cint; events: pepoll_event; maxevents, timeout: cint; sigmask: PSigSet): cint;
|
||||
begin
|
||||
epoll_pwait := do_syscall(syscall_nr_epoll_pwait, tsysparam(epfd),
|
||||
tsysparam(events), tsysparam(maxevents), tsysparam(timeout), tsysparam(sigmask));
|
||||
tsysparam(events), tsysparam(maxevents), tsysparam(timeout), tsysparam(sigmask), sizeof(TSigSet));
|
||||
end;
|
||||
|
||||
function capget(header:Puser_cap_header;data:Puser_cap_data):cint;
|
||||
|
Loading…
Reference in New Issue
Block a user