1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-24 20:30:28 +02:00

Did the follwing renamings: scm_with_blocked_asyncs ->

scm_frame_block_asyncs, scm_with_unblocked_asyncs ->
scm_frame_unblock_asyncs.  Changed all uses.
This commit is contained in:
Marius Vollmer 2004-01-07 18:03:18 +00:00
parent ba40113e70
commit dfe610a085
2 changed files with 8 additions and 8 deletions

View file

@ -44,8 +44,8 @@ SCM_API SCM scm_call_with_blocked_asyncs (SCM proc);
SCM_API SCM scm_call_with_unblocked_asyncs (SCM proc);
void *scm_c_call_with_blocked_asyncs (void *(*p) (void *d), void *d);
void *scm_c_call_with_unblocked_asyncs (void *(*p) (void *d), void *d);
void scm_with_blocked_asyncs (void);
void scm_with_unblocked_asyncs (void);
void scm_frame_block_asyncs (void);
void scm_frame_unblock_asyncs (void);
SCM_API void scm_init_async (void);
#if (SCM_ENABLE_DEPRECATED == 1)