X-Spam-Check-By: sourceware.org
Message-ID: <442FC58A.4070707@roboros.com>
Date: Sun, 02 Apr 2006 14:37:30 +0200
From: =?ISO-8859-1?Q?Robert_=D6gren?= <lists@roboros.com>
User-Agent: Mozilla Thunderbird 1.0.6 (Windows/20050716)
MIME-Version: 1.0
To: cygwin@cygwin.com
Subject: Re: popen() fails after 256 successful calls
References: <e0oel0$b4a$1@sea.gmane.org>
In-Reply-To: <e0oel0$b4a$1@sea.gmane.org>
Content-Type: text/plain; charset=ISO-8859-1; format=flowed
Content-Transfer-Encoding: 7bit
X-IsSubscribed: yes
Mailing-List: contact cygwin-help@cygwin.com; run by ezmlm
List-Subscribe: <mailto:cygwin-subscribe@cygwin.com>
List-Archive: <http://sourceware.org/ml/cygwin/>
List-Post: <mailto:cygwin@cygwin.com>
List-Help: <mailto:cygwin-help@cygwin.com>, <http://sourceware.org/ml/#faqs>
Sender: cygwin-owner@cygwin.com
Mail-Followup-To: cygwin@cygwin.com
Delivered-To: mailing list cygwin@cygwin.com

Eric Lilja wrote:
> Hello, I have two directories, both with ~4k files in them. For each 
> directory I needed to calculate a SHA1 checksum on each file and store them 
> in a table and then do some comparisons. I wrote a C++ program for this but 
> I noticed popen() (which I use to invoke sha1sum.exe to calculate the 
> checksum) would fail after 256 successful calls with the error "Resource 
> temporarily unavailable". I rewrote the program in pure C and kept just the 
> directory scanning/popen() part and tried a few directories but still the 
> same error. Attached is the source for the C program, Makefile to build it 
> and cygcheck output.

I believe you should use pclose, not fclose, to close the stream 
returned by popen.

Regards,
Robert

--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Problem reports:       http://cygwin.com/problems.html
Documentation:         http://cygwin.com/docs.html
FAQ:                   http://cygwin.com/faq/

