Limit on number of open files

2004-04-15 Thread Edward Deitz
Is there a way to increase the number of files that can be open simultaneously? Here's what I've tried: $ ulimit -n 1024 $ ulimit -n 1024 So I tested with the following code: #include int main(int argc, char **argv) { int i; for (i = 0; i < 1000; i++) { FILE *f = fopen("/dev/null

Re: Limit on number of open files

2004-04-15 Thread Edward Deitz
Thanks very much for your help. Using the snapshot version of the .dll fixed the problem. You'll have to trust me that I did search the archives before posting. . .I'm just not very good at it apparently. Ed. --- Brian Ford <[EMAIL PROTECTED]> wrote: > On Thu, 15 Apr 2004,

Re: Cygwin setup window size, why no maximize button enabled ?

2004-04-16 Thread Edward Deitz
If you search the archives of this mailing list for "resizeable" you will find several long threads on this topic. The jist seems to be that this feature is not yet implemented because it's bloody hard (not trivial, as high-falutin' people say). There's also a lot of discussion regarding "meannes

Re: sed -i causes +S+H

2004-08-02 Thread Edward Deitz
On May 11 07:55, [EMAIL PROTECTED] wrote: >> Just at the moment >> >> sed -i 's/../../g' file1 >> >> causes the edited file 'file1' to possess attributes not just +A as one >> might expect but also +S +H. >I found the cause and checked in a fix. >Thanks for the report, >Corinna Has the fi