mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-13 02:29:36 +02:00
* fixed RLIMIT_VMEM gotcha
git-svn-id: trunk@1754 -
This commit is contained in:
parent
9a8dc6bfb2
commit
b6ed07eb30
@ -262,8 +262,10 @@ Const
|
||||
{$IFDEF FreeBSD}
|
||||
RLIMIT_SBSIZE = 9; { maximum size of all socket buffers }
|
||||
RLIMIT_VMEM =10; { virtual process size (inclusive of mmap) }
|
||||
RLIMIT_AS = RLIMIT_VMEM;
|
||||
{$ELSE}
|
||||
RLIMIT_AS = 5; { address space= resident set size}
|
||||
{$ENDIF}
|
||||
RLIMIT_AS = RLIMIT_VMEM; { standard name for RLIMIT_VMEM }
|
||||
|
||||
{$ifdef FreeBSD}
|
||||
RLIM_NLIMITS =11; { number of resource limits }
|
||||
|
Loading…
Reference in New Issue
Block a user