diff options
author | Neil Jerram <neil@ossau.uklinux.net> | 2002-10-19 16:33:25 +0000 |
---|---|---|
committer | Neil Jerram <neil@ossau.uklinux.net> | 2002-10-19 16:33:25 +0000 |
commit | 0a50eeaadb3533ad57ebe26f91cc750e1dadc809 (patch) | |
tree | 02695bc70d98de816fd46e849b67bcbdb3a1bdfb /doc/ref/scheme-scheduling.texi | |
parent | 5ec1d2c8e04ebaa909e8064a80ffc76620143bcf (diff) | |
download | guile-0a50eeaadb3533ad57ebe26f91cc750e1dadc809.tar.gz |
Auto docstring updates, including soft port enhancement.
Diffstat (limited to 'doc/ref/scheme-scheduling.texi')
-rw-r--r-- | doc/ref/scheme-scheduling.texi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/ref/scheme-scheduling.texi b/doc/ref/scheme-scheduling.texi index da5db4e8a..5f0bda05a 100644 --- a/doc/ref/scheme-scheduling.texi +++ b/doc/ref/scheme-scheduling.texi @@ -99,7 +99,7 @@ temporarily decrease the blocking level of the current thread. You can use it when you want to disable asyncs by default and only allow them temporarily. -@deffn {Scheme procedure} system-async-mark proc [thread] +@deffn {Scheme Procedure} system-async-mark proc [thread] @deffnx {C Function} scm_system_async_mark (proc) @deffnx {C Function} scm_system_async_mark_for_thread (proc, thread) Mark @var{proc} (a procedure with zero arguments) for future execution @@ -115,7 +115,7 @@ signal handlers. @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 *(*p) (void *d), void *d) +@deffnx {C Function} void *scm_c_call_with_blocked_asyncs (void * (*proc) (void *data), void *data) 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 |