help old bsd-system which don't have RLIMIT_AS and use RLIMIT_VMEM

for virtual memory limits.



git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@44577 65c4cc65-6c06-0410-ace0-fbb531ad65f3
1.6.0
Luigi Rizzo 20 years ago
parent 3f641c6048
commit a96afe5d6d

@ -41,6 +41,9 @@ static struct limits {
{ RLIMIT_MEMLOCK, "-l", "amount of memory locked into RAM" },
#endif
{ RLIMIT_NOFILE, "-n", "number of file descriptors" },
#ifndef RLIMIT_AS /* *BSD use RLIMIT_VMEM */
#define RLIMIT_AS RLIMIT_VMEM
#endif
{ RLIMIT_AS, "-v", "virtual memory" },
};

Loading…
Cancel
Save