* a few type aliases added, capitalisation fixed

git-svn-id: trunk@2756 -
This commit is contained in:
marco 2006-03-05 13:28:27 +00:00
parent 8d2dd005c7
commit a0573f1015

View File

@ -62,19 +62,22 @@ Const
type
TCloneFunc=function(args:pointer):longint;cdecl;
epoll_data = record
EPoll_Data = Record
case integer of
0: (ptr: pointer);
1: (fd: cint);
2: (u32: cuint);
3: (u64: cuint64);
end;
TEPoll_Data = Epoll_Data;
PEPoll_Data = ^Epoll_Data;
pepoll_event = ^epoll_event;
epoll_event = record
events: cuint32;
data: epoll_data;
EPoll_Event = Record
Events: cuint32;
Data : TEpoll_Data;
end;
TEPoll_Event = Epoll_Event;
PEpoll_Event = ^Epoll_Event;
function Clone(func:TCloneFunc;sp:pointer;flags:longint;args:pointer):longint; {$ifdef FPC_USE_LIBC} cdecl; external name 'clone'; {$endif}