mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-07 01:05:56 +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;
|
function epoll_pwait(epfd: cint; events: pepoll_event; maxevents, timeout: cint; sigmask: PSigSet): cint;
|
||||||
begin
|
begin
|
||||||
epoll_pwait := do_syscall(syscall_nr_epoll_pwait, tsysparam(epfd),
|
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;
|
end;
|
||||||
|
|
||||||
function capget(header:Puser_cap_header;data:Puser_cap_data):cint;
|
function capget(header:Puser_cap_header;data:Puser_cap_data):cint;
|
||||||
|
Loading…
Reference in New Issue
Block a user