From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 5629 invoked from network); 15 Nov 2002 11:56:34 -0000 Received: from sunsite.dk (130.225.247.90) by ns1.primenet.com.au with SMTP; 15 Nov 2002 11:56:34 -0000 Received: (qmail 3515 invoked by alias); 15 Nov 2002 11:56:25 -0000 Mailing-List: contact zsh-workers-help@sunsite.dk; run by ezmlm Precedence: bulk X-No-Archive: yes X-Seq: 17939 Received: (qmail 3507 invoked from network); 15 Nov 2002 11:56:24 -0000 To: zsh-workers@sunsite.dk (Zsh hackers list) Subject: Re: ulimit strangeness In-reply-to: ""Bart Schaefer""'s message of "Thu, 14 Nov 2002 16:43:32 GMT." <1021114164332.ZM7641@candle.brasslantern.com> Date: Fri, 15 Nov 2002 11:55:54 +0000 Message-ID: <23083.1037361354@csr.com> From: Peter Stephenson "Bart Schaefer" wrote: > zsh% ulimit -v $[200*1024]; limit > cputime unlimited > filesize unlimited > datasize unlimited > stacksize 8MB > coredumpsize unlimited > memoryuse unlimited > maxproc 2040 > descriptors 1024 > memorylocked unlimited > addressspace 200kB <-- Note, not 200 megabytes! > > It looks like this has something to do with the convoluted #ifdef that > prevents duplicate case labels in rlimits.c when both RLIMIT_RSS and > RLIMIT_VMEM are defined, but I haven't yet figured out what to fix. My guess is the test `RLIMIT_RSS != RLIMIT_VMEM' is incorrectly failing in the preprocessor, i.e. it thinks RLIMIT_RSS == RLIMIT_VMEM owing to the way the definitions are laid out. Checking /usr/include/sys/resource.h or carefully hidden equivalent should confirm or refute this. The following programme might help. #include #include int main(int argc, char **argv) { #if defined(RLIMIT_RSS) && defined(RLIMIT_VMEM) printf("You have both definitions.\n"); if (RLIMIT_RSS == RLIMIT_VMEM) { printf("Both have the same value.\n"); } else { printf("They have different values.\n"); #if RLIMIT_RSS == RLIMIT_VMEM printf("!!!You should never see this message!!!\n"); #endif } #else #ifdef RLIMIT_RSS printf("You only have RSS\n"); #else #ifdef RLIMIT_VMEM printf("You only have VMEM\n"); #else printf("You have neither definition.\n"); #endif #endif #endif return 0; } We could probe this more reliably than at present in configure. -- Peter Stephenson Software Engineer CSR Ltd., Science Park, Milton Road, Cambridge, CB4 0WH, UK Tel: +44 (0)1223 692070 ********************************************************************** The information transmitted is intended only for the person or entity to which it is addressed and may contain confidential and/or privileged material. Any review, retransmission, dissemination or other use of, or taking of any action in reliance upon, this information by persons or entities other than the intended recipient is prohibited. If you received this in error, please contact the sender and delete the material from any computer. **********************************************************************