This is the mail archive of the cygwin@sources.redhat.com mailing list for the Cygwin project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

RE: Bug report: gcc + cygwin


Thanx for the prompt response. I have some questions regarding your answer.

How CygWin manages the size of fd table since the same program compiled with
-mno-cygwin says that my Windows allows a process to have only 256 files
opened at a time?

You said that I used a terible method to find out the size of fd table. Do
you know a better method? Can you tell it to me?


Best regards,
Emil.

-----Original Message-----
From: Christopher Faylor [mailto:cgf@redhat.com]
Sent: Wednesday, November 08, 2000 6:04 PM
To: cygwin@sources.redhat.com
Subject: Re: Bug report: gcc + cygwin


On Wed, Nov 08, 2000 at 05:33:28PM +0200, Medve Emilian-EMMEDVE1 wrote:
>This is my program (it's also attached to this e-mail):
>
>#include<io.h>
>#include<stdio.h>
>#include<stdlib.h>
>
>int main(void)
>{
>        int n=0;
>
>        while(dup(1)!=-1)n++;
>        printf("Size of FILE0 table is: %d.\n",n+3);
>        exit(EXIT_SUCCESS);
>}
>
>Compilation command line: gcc -Wall -o dup dup.c
>
>And this is the output:
>
>d:\Profiles\emmedve1\LOCALS~1\Temp\dup.exe: *** couldn't commit memory for
>cygwi
>n heap, Win32 error 487

In other words, you tried to grow the fd table without bounds and
eventually cygwin ran out of memory.  You can't find the size of the
file table this way.  It's a terrible method for doing this.  Cygwin's
file table doesn't have an upper limit.

Well, I guess 2^32 is probably an upper limit.

>If I use -mno-cygwin everythig works as expected (fine).

Well then, problem solved.

cgf

--
Want to unsubscribe from this list?
Send a message to cygwin-unsubscribe@sourceware.cygnus.com

--
Want to unsubscribe from this list?
Send a message to cygwin-unsubscribe@sourceware.cygnus.com


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]