* fix for Mantis : the new epoll_pwait was missing the size parameter for the sigmask parameter

git-svn-id: trunk@45208 -
This commit is contained in:
svenbarth 2020-05-01 13:11:02 +00:00
parent 4faf56353e
commit 2840e5e1fd

View File

@ -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;