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: async blocking function linking Date: Sun, 01 Jun 2014 20:54:49 -0400 Message-ID: <87k3902krq.fsf@yeeloong.lan> References: <20140504113419.0c13fb07@laptop.homenet> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: ger.gmane.org 1401670526 27888 80.91.229.3 (2 Jun 2014 00:55:26 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Mon, 2 Jun 2014 00:55:26 +0000 (UTC) Cc: guile-devel To: Chris Vine Original-X-From: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Mon Jun 02 02:55:18 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 1WrGX0-0005mO-8w for guile-devel@m.gmane.org; Mon, 02 Jun 2014 02:55:18 +0200 Original-Received: from localhost ([::1]:42495 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WrGWz-0008DP-VE for guile-devel@m.gmane.org; Sun, 01 Jun 2014 20:55:17 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:45331) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WrGWs-00085f-A3 for guile-devel@gnu.org; Sun, 01 Jun 2014 20:55:16 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WrGWm-0001bR-9o for guile-devel@gnu.org; Sun, 01 Jun 2014 20:55:10 -0400 Original-Received: from world.peace.net ([96.39.62.75]:36802) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WrGWm-0001bF-6y for guile-devel@gnu.org; Sun, 01 Jun 2014 20:55:04 -0400 Original-Received: from 209-6-91-212.c3-0.smr-ubr1.sbo-smr.ma.cable.rcn.com ([209.6.91.212] helo=yeeloong.lan) by world.peace.net with esmtpsa (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.72) (envelope-from ) id 1WrGWf-0003Zm-Uh; Sun, 01 Jun 2014 20:54:58 -0400 In-Reply-To: <20140504113419.0c13fb07@laptop.homenet> (Chris Vine's message of "Sun, 4 May 2014 11:34:19 +0100") 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:17179 Archived-At: Chris Vine writes: > guile-2.0's scm_c_call_with_blocked_asyncs, > scm_c_call_with_unblocked_asyncs, scm_dynwind_block_asyncs and > scm_dynwind_unblock_asyncs will not link for me using 32-bit > ubuntu-14.04 (gcc-4.8.2/guile-2.0.9) or 32-bit slackware-14.1 > (gcc-4.9.0/guile-2.0.11). I do not have a machine to test a 64-bit > system at present. > > The issue appears to be that this part of the API is not marked as > exported, even though these functions are documented and presumably > intended to be called by user code. > > A trivial patch, against guile-2.0.11, is attached dealing with this. Pushed to stable-2.0, commit 12c6a47773041ff5d0a3553421d2f358d9e479a9. Thanks! Mark