Use `SCM_DEPRECATED' in declarations of deprecated functions/variables.
[bpt/guile.git] / libguile / async.h
CommitLineData
0f2d19dd
JB
1/* classes: h_files */
2
82893676
MG
3#ifndef SCM_ASYNC_H
4#define SCM_ASYNC_H
0527e687 5
0eb934f1 6/* Copyright (C) 1995,1996,1997,1998,2000,2001, 2002, 2004, 2005, 2006, 2008, 2009 Free Software Foundation, Inc.
843e4e9d 7 *
73be1d9e 8 * This library is free software; you can redistribute it and/or
53befeb7
NJ
9 * modify it under the terms of the GNU Lesser General Public License
10 * as published by the Free Software Foundation; either version 3 of
11 * the License, or (at your option) any later version.
843e4e9d 12 *
53befeb7
NJ
13 * This library is distributed in the hope that it will be useful, but
14 * WITHOUT ANY WARRANTY; without even the implied warranty of
73be1d9e
MV
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
843e4e9d 17 *
73be1d9e
MV
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with this library; if not, write to the Free Software
53befeb7
NJ
20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
21 * 02110-1301 USA
73be1d9e 22 */
d3a6bc94 23
0f2d19dd
JB
24\f
25
b4309c3c 26#include "libguile/__scm.h"
5b900ecf 27#include "libguile/root.h"
9de87eea 28#include "libguile/threads.h"
0f2d19dd 29
0f2d19dd
JB
30\f
31
4c908f2c 32#define scm_mask_ints (SCM_I_CURRENT_THREAD->block_asyncs != 0)
939794ce 33
0f2d19dd 34\f
0f2d19dd 35
e4e93373
MV
36SCM_API void scm_async_click (void);
37SCM_API void scm_switch (void);
38SCM_API SCM scm_async (SCM thunk);
e4e93373
MV
39SCM_API SCM scm_async_mark (SCM a);
40SCM_API SCM scm_system_async_mark (SCM a);
61c95a49 41SCM_API SCM scm_system_async_mark_for_thread (SCM a, SCM thread);
102dbb6f
LC
42SCM_INTERNAL void scm_i_queue_async_cell (SCM cell, scm_i_thread *);
43SCM_INTERNAL int scm_i_setup_sleep (scm_i_thread *,
44 SCM obj, scm_i_pthread_mutex_t *m,
45 int fd);
46SCM_INTERNAL void scm_i_reset_sleep (scm_i_thread *);
e4e93373
MV
47SCM_API SCM scm_run_asyncs (SCM list_of_a);
48SCM_API SCM scm_noop (SCM args);
e292f7aa
MV
49SCM_API SCM scm_call_with_blocked_asyncs (SCM proc);
50SCM_API SCM scm_call_with_unblocked_asyncs (SCM proc);
51void *scm_c_call_with_blocked_asyncs (void *(*p) (void *d), void *d);
52void *scm_c_call_with_unblocked_asyncs (void *(*p) (void *d), void *d);
661ae7ab
MV
53void scm_dynwind_block_asyncs (void);
54void scm_dynwind_unblock_asyncs (void);
9de87eea 55
a4d106c7
MV
56/* Critical sections */
57
58/* XXX - every critical section needs to be examined whether the
59 requirements for SCM_CRITICAL_SECTION_START/END are fulfilled. See
60 the manual.
61*/
62
87f30eda 63/* Defined in threads.c. */
a4d106c7 64extern scm_i_pthread_mutex_t scm_i_critical_section_mutex;
a4d106c7
MV
65
66#define SCM_CRITICAL_SECTION_START \
67 do { \
68 scm_i_pthread_mutex_lock (&scm_i_critical_section_mutex);\
69 SCM_I_CURRENT_THREAD->block_asyncs++; \
87f30eda 70 SCM_I_CURRENT_THREAD->critical_section_level++; \
a4d106c7
MV
71 } while (0)
72#define SCM_CRITICAL_SECTION_END \
73 do { \
87f30eda 74 SCM_I_CURRENT_THREAD->critical_section_level--; \
a4d106c7
MV
75 SCM_I_CURRENT_THREAD->block_asyncs--; \
76 scm_i_pthread_mutex_unlock (&scm_i_critical_section_mutex); \
77 scm_async_click (); \
78 } while (0)
79
102dbb6f 80SCM_INTERNAL void scm_init_async (void);
e292f7aa 81
e71a8bf2 82#if (SCM_ENABLE_DEPRECATED == 1)
e292f7aa 83
0eb934f1
LC
84SCM_DEPRECATED SCM scm_system_async (SCM thunk);
85SCM_DEPRECATED SCM scm_unmask_signals (void);
86SCM_DEPRECATED SCM scm_mask_signals (void);
e292f7aa
MV
87
88#endif
0f2d19dd 89
82893676 90#endif /* SCM_ASYNC_H */
89e00824
ML
91
92/*
93 Local Variables:
94 c-file-style: "gnu"
95 End:
96*/