mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-05-18 14:42:33 +02:00
24 lines
481 B
PHP
24 lines
481 B
PHP
|
|
type
|
|
Pnfds_t = ^nfds_t;
|
|
nfds_t = dword;
|
|
|
|
Ppollfd = ^pollfd;
|
|
pollfd = record
|
|
fd : longint;
|
|
events : smallint;
|
|
revents : smallint;
|
|
end;
|
|
|
|
|
|
function poll(__fds: Ppollfd; __nfds:nfds_t; __timeout:longint):longint;cdecl;external clib name 'poll';
|
|
|
|
|
|
{ ---------------------------------------------------------------------
|
|
Borland compatibility types
|
|
---------------------------------------------------------------------}
|
|
|
|
Type
|
|
TPollFD = pollfd;
|
|
|