mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-05-20 11:40:18 +02:00
* __scm.h (scm_asyncs_pending_p): Removed.
(SCM_ASYNC_CLICK): Check scm_active_asyncs instead of scm_asyncs_pending_p.
This commit is contained in:
parent
2d3179db77
commit
e3c9bec302
1 changed files with 1 additions and 3 deletions
|
@ -406,11 +406,9 @@ typedef long SCM_STACKITEM;
|
|||
#define SCM_THREAD_SWITCHING_CODE
|
||||
#endif
|
||||
|
||||
SCM_API int scm_asyncs_pending_p;
|
||||
|
||||
#define SCM_ASYNC_TICK /*fixme* should change names */ \
|
||||
do { \
|
||||
if (scm_asyncs_pending_p) \
|
||||
if (scm_active_asyncs != SCM_EOL) \
|
||||
scm_async_click (); \
|
||||
} while (0)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue