mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-13 11:24:14 +02:00
* little fixes related to KQueue and Sendfile
git-svn-id: trunk@2529 -
This commit is contained in:
parent
4eb1f8d407
commit
1656cdc574
@ -18,6 +18,7 @@ Unit BSD;
|
||||
|
||||
{$IFDEF FPC}
|
||||
{$PACKRECORDS C}
|
||||
{$Inline On}
|
||||
{$Macro On}
|
||||
{$ifdef FPC_USE_LIBC}
|
||||
{$define directives:=cdecl; external 'c';}
|
||||
|
@ -281,7 +281,14 @@ Type
|
||||
rlim_max : TRLim; { maximum value for rlim_cur }
|
||||
end;
|
||||
PRLimit = ^TRLimit;
|
||||
|
||||
|
||||
iovec = record
|
||||
iov_base : pointer;
|
||||
iov_len : size_t;
|
||||
end;
|
||||
tiovec=iovec;
|
||||
piovec=^tiovec;
|
||||
|
||||
CONST
|
||||
{ Constansts for MMAP }
|
||||
MAP_PRIVATE =2;
|
||||
|
Loading…
Reference in New Issue
Block a user