--- 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 address@hidden FIXME: The use of @deffnx for scm_c_call_with_blocked_asyncs and address@hidden scm_c_call_with_unblocked_asyncs puts "void" into the function address@hidden index. Would prefer to use @deftypefnx if makeinfo allowed that, address@hidden or a @deftypefn with an empty return type argument if it didn't address@hidden 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) address@hidden 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) address@hidden 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}