summaryrefslogtreecommitdiff
path: root/libguile/async.h
diff options
context:
space:
mode:
authorMarius Vollmer <mvo@zagadka.de>2004-01-04 23:36:49 +0000
committerMarius Vollmer <mvo@zagadka.de>2004-01-04 23:36:49 +0000
commitb57a0953fe589a52a5460526e1eda42b8a10e6a1 (patch)
treea63fdba73fefabe854e5d52a3196115c317cd70a /libguile/async.h
parente0499207154aa2ceff06e7679cd94afc25b3001e (diff)
downloadguile-b57a0953fe589a52a5460526e1eda42b8a10e6a1.tar.gz
(scm_with_blocked_asyncs, scm_with_unblocked_asyncs): New.
Diffstat (limited to 'libguile/async.h')
-rw-r--r--libguile/async.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/libguile/async.h b/libguile/async.h
index 5e18a04e5..3174c7a48 100644
--- a/libguile/async.h
+++ b/libguile/async.h
@@ -3,7 +3,7 @@
#ifndef SCM_ASYNC_H
#define SCM_ASYNC_H
-/* Copyright (C) 1995,1996,1997,1998,2000,2001, 2002 Free Software Foundation, Inc.
+/* Copyright (C) 1995,1996,1997,1998,2000,2001, 2002, 2004 Free Software Foundation, Inc.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
@@ -44,6 +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);
SCM_API void scm_init_async (void);
#if (SCM_ENABLE_DEPRECATED == 1)