From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Kevin Ryde Newsgroups: gmane.lisp.guile.devel Subject: doco system asyncs indexing Date: Thu, 24 Jul 2003 10:04:05 +1000 Sender: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Message-ID: <87n0f4bxje.fsf@zip.com.au> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" X-Trace: main.gmane.org 1059005093 30360 80.91.224.249 (24 Jul 2003 00:04:53 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Thu, 24 Jul 2003 00:04:53 +0000 (UTC) Original-X-From: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Thu Jul 24 02:04:50 2003 Return-path: Original-Received: from monty-python.gnu.org ([199.232.76.173]) by main.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 19fTbG-0007tM-00 for ; Thu, 24 Jul 2003 02:04:50 +0200 Original-Received: from localhost ([127.0.0.1] helo=monty-python.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.20) id 19fTby-0001Jc-13 for guile-devel@m.gmane.org; Wed, 23 Jul 2003 20:05:34 -0400 Original-Received: from list by monty-python.gnu.org with tmda-scanned (Exim 4.20) id 19fTbB-0000ng-SU for guile-devel@gnu.org; Wed, 23 Jul 2003 20:04:45 -0400 Original-Received: from mail by monty-python.gnu.org with spam-scanned (Exim 4.20) id 19fTb5-0000U0-8P for guile-devel@gnu.org; Wed, 23 Jul 2003 20:04:40 -0400 Original-Received: from snoopy.pacific.net.au ([61.8.0.36]) by monty-python.gnu.org with esmtp (Exim 4.20) id 19fTan-0008PQ-3x for guile-devel@gnu.org; Wed, 23 Jul 2003 20:04:21 -0400 Original-Received: from sunny.pacific.net.au (sunny.pacific.net.au [203.2.228.40]) by snoopy.pacific.net.au (8.12.3/8.12.3/Debian-6.4) with ESMTP id h6O04JiI029053 for ; Thu, 24 Jul 2003 10:04:19 +1000 Original-Received: from wisma.pacific.net.au (wisma.pacific.net.au [210.23.129.72]) by sunny.pacific.net.au with ESMTP id h6O04JQg020621 for ; Thu, 24 Jul 2003 10:04:19 +1000 (EST) Original-Received: from localhost (ppp55.dyn228.pacific.net.au [203.143.228.55]) by wisma.pacific.net.au (8.12.9/8.12.9) with ESMTP id h6O04G8E012742 for ; Thu, 24 Jul 2003 10:04:17 +1000 (EST) Original-Received: from gg by localhost with local (Exim 3.35 #1 (Debian)) id 19fTaZ-0006JT-00; Thu, 24 Jul 2003 10:04:07 +1000 Original-To: guile-devel@gnu.org Mail-Copies-To: never User-Agent: Gnus/5.090019 (Oort Gnus v0.19) Emacs/21.2 (gnu/linux) X-BeenThere: guile-devel@gnu.org X-Mailman-Version: 2.1.2 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 Xref: main.gmane.org gmane.lisp.guile.devel:2643 X-Report-Spam: http://spam.gmane.org/gmane.lisp.guile.devel:2643 --=-=-= FYI, * scheme-scheduling.texi (System asyncs): Add index entries for C functions. --=-=-= Content-Disposition: attachment; filename=scheme-scheduling.texi.blocked.diff --- scheme-scheduling.texi.~1.11.~ 2003-06-05 02:17:58.000000000 +1000 +++ scheme-scheduling.texi 2003-07-24 10:02:47.000000000 +1000 @@ -114,9 +114,16 @@ signal handlers. @end deffn +@c FIXME: The use of @deffnx for scm_c_call_with_blocked_asyncs and +@c scm_c_call_with_unblocked_asyncs puts "void" into the function +@c index. Would prefer to use @deftypefnx if makeinfo allowed that, +@c or a @deftypefn with an empty return type argument if it didn't +@c introduce an extra space. + @deffn {Scheme Procedure} call-with-blocked-asyncs proc @deffnx {C Function} scm_call_with_blocked_asyncs (proc) @deffnx {C Function} void *scm_c_call_with_blocked_asyncs (void * (*proc) (void *data), void *data) +@findex scm_c_call_with_blocked_asyncs Call @var{proc} and block the execution of system asyncs by one level for the current thread while it is running. Return the value returned by @var{proc}. For the first two variants, call @var{proc} with no @@ -126,6 +133,7 @@ @deffn {Scheme Procedure} call-with-unblocked-asyncs proc @deffnx {C Function} scm_call_with_unblocked_asyncs (proc) @deffnx {C Function} void *scm_c_call_with_unblocked_asyncs (void *(*p) (void *d), void *d) +@findex scm_c_call_with_unblocked_asyncs Call @var{proc} and unblock the execution of system asyncs by one level for the current thread while it is running. Return the value returned by @var{proc}. For the first two variants, call @var{proc} --=-=-= Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Disposition: inline _______________________________________________ Guile-devel mailing list Guile-devel@gnu.org http://mail.gnu.org/mailman/listinfo/guile-devel --=-=-=--