* threads.h, async.h, threads.c (SCM_CRITICAL_SECTION_START,
[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
b57a0953 6/* Copyright (C) 1995,1996,1997,1998,2000,2001, 2002, 2004 Free Software Foundation, Inc.
843e4e9d 7 *
73be1d9e
MV
8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation; either
11 * version 2.1 of the License, or (at your option) any later version.
843e4e9d 12 *
73be1d9e 13 * This library is distributed in the hope that it will be useful,
0f2d19dd 14 * but 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
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 */
d3a6bc94 22
0f2d19dd
JB
23\f
24
b4309c3c 25#include "libguile/__scm.h"
5b900ecf 26#include "libguile/root.h"
9de87eea 27#include "libguile/threads.h"
0f2d19dd 28
0f2d19dd
JB
29\f
30
e292f7aa 31#define scm_mask_ints (scm_root->block_asyncs != 0)
939794ce 32
0f2d19dd 33\f
0f2d19dd 34
e4e93373
MV
35SCM_API void scm_async_click (void);
36SCM_API void scm_switch (void);
37SCM_API SCM scm_async (SCM thunk);
e4e93373
MV
38SCM_API SCM scm_async_mark (SCM a);
39SCM_API SCM scm_system_async_mark (SCM a);
61c95a49 40SCM_API SCM scm_system_async_mark_for_thread (SCM a, SCM thread);
9de87eea
MV
41SCM_API void scm_i_queue_async_cell (SCM cell, scm_i_thread *);
42SCM_API int scm_i_setup_sleep (scm_i_thread *,
43 SCM obj, scm_i_pthread_mutex_t *m, int fd);
44SCM_API void scm_i_reset_sleep (scm_i_thread *);
e4e93373
MV
45SCM_API SCM scm_run_asyncs (SCM list_of_a);
46SCM_API SCM scm_noop (SCM args);
e292f7aa
MV
47SCM_API SCM scm_call_with_blocked_asyncs (SCM proc);
48SCM_API SCM scm_call_with_unblocked_asyncs (SCM proc);
49void *scm_c_call_with_blocked_asyncs (void *(*p) (void *d), void *d);
50void *scm_c_call_with_unblocked_asyncs (void *(*p) (void *d), void *d);
dfe610a0
MV
51void scm_frame_block_asyncs (void);
52void scm_frame_unblock_asyncs (void);
9de87eea 53
a4d106c7
MV
54/* Critical sections */
55
56/* XXX - every critical section needs to be examined whether the
57 requirements for SCM_CRITICAL_SECTION_START/END are fulfilled. See
58 the manual.
59*/
60
61/* Defined in threads.c. scm_i_critical_section_level is only used
62 for error checking and will go away eventually. */
63extern scm_i_pthread_mutex_t scm_i_critical_section_mutex;
64extern int scm_i_critical_section_level;
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++; \
70 scm_i_critical_section_level++; \
71 } while (0)
72#define SCM_CRITICAL_SECTION_END \
73 do { \
74 scm_i_critical_section_level--; \
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
e292f7aa
MV
80SCM_API void scm_init_async (void);
81
e71a8bf2 82#if (SCM_ENABLE_DEPRECATED == 1)
e292f7aa 83
100ae50d 84SCM_API SCM scm_system_async (SCM thunk);
e4e93373
MV
85SCM_API SCM scm_unmask_signals (void);
86SCM_API 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*/