X-Recipient: archive-cygwin AT delorie DOT com DomainKey-Signature: a=rsa-sha1; c=nofws; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:date:from:to:subject:message-id:reply-to :references:mime-version:content-type:in-reply-to; q=dns; s= default; b=PVtMmdr7azBesz6OHyx/+cvWr8PKdJNWAb2Jah76uKtxyowIIawKk yybALy75Vn+7mcQ1POllkdjirctldP5COADVfocUBzPjic63wqlDYX1XVEIPfnzC A1VgM2pTvCEHJWkPx5VeRJ9JOAg3SomrzhetJJxgy0o0jy5kraNqcw= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:date:from:to:subject:message-id:reply-to :references:mime-version:content-type:in-reply-to; s=default; bh=2pECqhqQzOmfwm/p9/ueN+jVU6M=; b=X2n1nLRx7dxQDXESDV6CslCDUMbb UtLA4Ff2rP1xeBovSwtABWLTYqGAAbVTm8GMN84nhIsE48O1DdW2QmkdWigSGb3Y PnMizf6r6Q0OXYJCQ/TjyXZT2C0puq8RZLZKgY2H/PmfS3fnTicVTk500YQs6haN OwSTRGPsgxyAr+k= Mailing-List: contact cygwin-help AT cygwin DOT com; run by ezmlm List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: cygwin-owner AT cygwin DOT com Mail-Followup-To: cygwin AT cygwin DOT com Delivered-To: mailing list cygwin AT cygwin DOT com X-Spam-SWARE-Status: No, score=-1.7 required=5.0 tests=AWL,BAYES_00,RCVD_IN_DNSWL_NONE,RCVD_IN_HOSTKARMA_YE autolearn=ham version=3.3.1 X-Mail-Handler: Dyn Standard SMTP by Dyn X-Report-Abuse-To: abuse AT dyndns DOT com (see http://www.dyndns.com/services/sendlabs/outbound_abuse.html for abuse reporting information) X-MHO-User: U2FsdGVkX1+EbRiBhgD0dU9bmDhq4Y3U Date: Fri, 7 Jun 2013 11:58:12 -0400 From: Christopher Faylor To: cygwin AT cygwin DOT com Subject: Re: pthread_join() problem Message-ID: <20130607155812.GA3567@ednor.casa.cgf.cx> Reply-To: cygwin AT cygwin DOT com Mail-Followup-To: cygwin AT cygwin DOT com References: <51ABC0BE DOT 5080408 AT tiscali DOT co DOT uk> <20130603100102 DOT GA14318 AT calimero DOT vinschen DOT de> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20130603100102.GA14318@calimero.vinschen.de> User-Agent: Mutt/1.5.20 (2009-06-14) On Mon, Jun 03, 2013 at 12:01:02PM +0200, Corinna Vinschen wrote: >On Jun 2 23:01, David Stacey wrote: >> I'm trying to get Poco[1] working under Cygwin, and have hit a >> problem with the way it manages its threads. A short example >> (attached) shows what's going on. >> >> Poco creates a global object that is used for managing various >> threads. In the destructor, the class calls pthread_join() to wait >> for the threads to finish. This works in Fedora (and presumably >> other Linux variants), but under Cygwin this call never returns. >> Note that the object is global, and so pthread_join() is being >> called after main() has returned and the global variables are being >> mopped up. >> >> In the attached example, the problem only exists if the >> 'thread_container' object is global. When run in this way, >> pthread_join() never returns and the programme locks up. If >> 'thread_container' is moved local to main() then the programme works >> correctly. Sadly, I can't make such a trivial fix to the Poco code, >> which rather relies on this object being global. >> >> The attached example (and indeed Poco) runs fine under Fedora 18 >> x64, but locks up on Cygwin (32-bit; haven't tried 64-bit). Problem >> exists with a vanilla cygwin-1.7.18-1 and the most recent snapshot >> (2013-06-02). > >Thanks for the simple testcase! > >I tracked this down to a problem in the process exit handling which >disallowed pthreads to exit when process exit was in progress (and >running the global destructors is part of the process exit). I fixed >that in CVS. > >I'm just uploading a 2013-06-03 snapshot to http://cygwin.com/snapshots/ >as well as generating a 1.7.9-10 cygwin package for the 64 bit test >distro. Please give either one of them a try, especially with poco. I've reworked this change since Corinna's fix was to what should have been obsolete code. A new snapshot should be uploaded soon. Could you confirm that things still work as expected? cgf -- Problem reports: http://cygwin.com/problems.html FAQ: http://cygwin.com/faq/ Documentation: http://cygwin.com/docs.html Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple