(scm_setgroups): Enhance docstring, per doc/ref/posix.texi.
[bpt/guile.git] / libguile / arbiters.c
... / ...
CommitLineData
1/* Copyright (C) 1995,1996, 1997, 2000, 2001 Free Software Foundation, Inc.
2 *
3 * This library is free software; you can redistribute it and/or
4 * modify it under the terms of the GNU Lesser General Public
5 * License as published by the Free Software Foundation; either
6 * version 2.1 of the License, or (at your option) any later version.
7 *
8 * This library is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * Lesser General Public License for more details.
12 *
13 * You should have received a copy of the GNU Lesser General Public
14 * License along with this library; if not, write to the Free Software
15 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
16 */
17
18
19\f
20
21#include "libguile/_scm.h"
22#include "libguile/ports.h"
23#include "libguile/smob.h"
24
25#include "libguile/validate.h"
26#include "libguile/arbiters.h"
27
28\f
29/* {Arbiters}
30 *
31 * These procedures implement synchronization primitives. Processors
32 * with an atomic test-and-set instruction can use it here (and not
33 * SCM_DEFER_INTS).
34 */
35
36static scm_t_bits scm_tc16_arbiter;
37
38
39#define SCM_ARB_LOCKED(arb) ((SCM_CELL_WORD_0 (arb)) & (1L << 16))
40#define SCM_LOCK_ARB(arb) (SCM_SET_CELL_WORD_0 ((arb), scm_tc16_arbiter | (1L << 16)));
41#define SCM_UNLOCK_ARB(arb) (SCM_SET_CELL_WORD_0 ((arb), scm_tc16_arbiter));
42
43static int
44arbiter_print (SCM exp, SCM port, scm_print_state *pstate)
45{
46 scm_puts ("#<arbiter ", port);
47 if (SCM_ARB_LOCKED (exp))
48 scm_puts ("locked ", port);
49 scm_iprin1 (SCM_PACK (SCM_SMOB_DATA (exp)), port, pstate);
50 scm_putc ('>', port);
51 return !0;
52}
53
54SCM_DEFINE (scm_make_arbiter, "make-arbiter", 1, 0, 0,
55 (SCM name),
56 "Return an object of type arbiter and name @var{name}. Its\n"
57 "state is initially unlocked. Arbiters are a way to achieve\n"
58 "process synchronization.")
59#define FUNC_NAME s_scm_make_arbiter
60{
61 SCM_RETURN_NEWSMOB (scm_tc16_arbiter, SCM_UNPACK (name));
62}
63#undef FUNC_NAME
64
65SCM_DEFINE (scm_try_arbiter, "try-arbiter", 1, 0, 0,
66 (SCM arb),
67 "Return @code{#t} and lock the arbiter @var{arb} if the arbiter\n"
68 "was unlocked. Otherwise, return @code{#f}.")
69#define FUNC_NAME s_scm_try_arbiter
70{
71 SCM_VALIDATE_SMOB (1, arb, arbiter);
72 SCM_DEFER_INTS;
73 if (SCM_ARB_LOCKED(arb))
74 arb = SCM_BOOL_F;
75 else
76 {
77 SCM_LOCK_ARB(arb);
78 arb = SCM_BOOL_T;
79 }
80 SCM_ALLOW_INTS;
81 return arb;
82}
83#undef FUNC_NAME
84
85
86SCM_DEFINE (scm_release_arbiter, "release-arbiter", 1, 0, 0,
87 (SCM arb),
88 "Return @code{#t} and unlock the arbiter @var{arb} if the\n"
89 "arbiter was locked. Otherwise, return @code{#f}.")
90#define FUNC_NAME s_scm_release_arbiter
91{
92 SCM_VALIDATE_SMOB (1, arb, arbiter);
93 if (!SCM_ARB_LOCKED(arb))
94 return SCM_BOOL_F;
95 SCM_UNLOCK_ARB (arb);
96 return SCM_BOOL_T;
97}
98#undef FUNC_NAME
99
100
101
102void
103scm_init_arbiters ()
104{
105 scm_tc16_arbiter = scm_make_smob_type ("arbiter", 0);
106 scm_set_smob_mark (scm_tc16_arbiter, scm_markcdr);
107 scm_set_smob_print (scm_tc16_arbiter, arbiter_print);
108#include "libguile/arbiters.x"
109}
110
111/*
112 Local Variables:
113 c-file-style: "gnu"
114 End:
115*/