blob: 8d4347c6247988538210f11732342467d58d40df (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
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;
|