From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Mark H Weaver Newsgroups: gmane.lisp.guile.devel Subject: Re: [PATCH] Fix thread-unsafe lazy initializations Date: Fri, 24 Jan 2014 10:52:07 -0500 Message-ID: <8761p9js2g.fsf@netris.org> References: <87ha8ulh1z.fsf@netris.org> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: ger.gmane.org 1390578904 18001 80.91.229.3 (24 Jan 2014 15:55:04 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Fri, 24 Jan 2014 15:55:04 +0000 (UTC) To: guile-devel@gnu.org Original-X-From: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Fri Jan 24 16:55:10 2014 Return-path: Envelope-to: guile-devel@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1W6j62-0006ID-VL for guile-devel@m.gmane.org; Fri, 24 Jan 2014 16:55:07 +0100 Original-Received: from localhost ([::1]:47379 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1W6j62-0007Tu-Kk for guile-devel@m.gmane.org; Fri, 24 Jan 2014 10:55:06 -0500 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:60416) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1W6j5u-0007Rh-G6 for guile-devel@gnu.org; Fri, 24 Jan 2014 10:55:04 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1W6j5o-0004DV-BQ for guile-devel@gnu.org; Fri, 24 Jan 2014 10:54:58 -0500 Original-Received: from world.peace.net ([96.39.62.75]:60015) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1W6j5o-0004DP-7P for guile-devel@gnu.org; Fri, 24 Jan 2014 10:54:52 -0500 Original-Received: from 209-6-91-212.c3-0.smr-ubr1.sbo-smr.ma.cable.rcn.com ([209.6.91.212] helo=yeeloong) by world.peace.net with esmtpsa (TLS1.0:DHE_RSA_AES_128_CBC_SHA1:16) (Exim 4.72) (envelope-from ) id 1W6j5i-0002pH-8z; Fri, 24 Jan 2014 10:54:46 -0500 In-Reply-To: <87ha8ulh1z.fsf@netris.org> (Mark H. Weaver's message of "Thu, 23 Jan 2014 12:54:48 -0500") User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.3 (gnu/linux) X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6.x X-Received-From: 96.39.62.75 X-BeenThere: guile-devel@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "Developers list for Guile, the GNU extensibility library" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Original-Sender: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.lisp.guile.devel:16845 Archived-At: Mark H Weaver writes: > This patch fixes all of the thread-unsafe lazy initializations I could > find in stable-2.0, using 'scm_i_pthread_once'. I went ahead and pushed this, since I'm confident it's correct. Mark