Explorar el Código

* fixed epoll_create

git-svn-id: trunk@4091 -
Jonas Maebe hace 19 años
padre
commit
3961254106
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      rtl/linux/linux.pp

+ 1 - 1
rtl/linux/linux.pp

@@ -237,7 +237,7 @@ end;
 
 function epoll_create(size: cint): cint;
 begin
-  epoll_create := do_syscall(syscall_nr_epoll_create);
+  epoll_create := do_syscall(syscall_nr_epoll_create,tsysparam(size));
 end;
 
 function epoll_ctl(epfd, op, fd: cint; event: pepoll_event): cint;