diff options
author | Andy Wingo <wingo@pobox.com> | 2016-10-17 21:58:08 +0200 |
---|---|---|
committer | Andy Wingo <wingo@pobox.com> | 2016-10-17 21:58:08 +0200 |
commit | 59f09d185b143326fb5c4d47bbd66eebe2b28d87 (patch) | |
tree | 681106f948a984bcb93a20fe4bc19ead1254e50a /libguile/deprecated.h | |
parent | 56d8d9a2577ea96a598f87f50dd6eafab0fcef26 (diff) | |
download | guile-59f09d185b143326fb5c4d47bbd66eebe2b28d87.tar.gz |
Deprecate user asyncs
* libguile/async.c:
* libguile/async.h:
* libguile/deprecated.c:
* libguile/deprecated.h (scm_async, scm_async_mark, scm_run_asyncs):
Deprecate these functions, which comprise the "users asyncs" facility.
* module/oop/goops.scm: Adapt to <async> deprecation.
* doc/ref/api-scheduling.texi:
* doc/ref/libguile-concepts.texi:
* doc/ref/libguile-foreign-objects.texi:
* doc/ref/posix.texi: Remove documentation on user asyncs, and replace
references to "system asyncs" to be just "asyncs".
Diffstat (limited to 'libguile/deprecated.h')
-rw-r--r-- | libguile/deprecated.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/libguile/deprecated.h b/libguile/deprecated.h index 5e8e8f819..7eb7ee479 100644 --- a/libguile/deprecated.h +++ b/libguile/deprecated.h @@ -223,6 +223,12 @@ SCM_DEPRECATED SCM scm_release_arbiter (SCM arb); +SCM_DEPRECATED SCM scm_async (SCM thunk); +SCM_DEPRECATED SCM scm_async_mark (SCM a); +SCM_DEPRECATED SCM scm_run_asyncs (SCM list_of_a); + + + void scm_i_init_deprecated (void); #endif |