summaryrefslogtreecommitdiff
path: root/libguile/null-threads.h
blob: be72346f0cf204797ddb20d48f25e204555b9123 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
#ifndef SCM_NULL_THREADS_H
#define SCM_NULL_THREADS_H

/* Copyright 2005-2006,2010,2018,2020
     Free Software Foundation, Inc.

   This file is part of Guile.

   Guile is free software: you can redistribute it and/or modify it
   under the terms of the GNU Lesser General Public License as published
   by the Free Software Foundation, either version 3 of the License, or
   (at your option) any later version.

   Guile is distributed in the hope that it will be useful, but WITHOUT
   ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
   FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
   License for more details.

   You should have received a copy of the GNU Lesser General Public
   License along with Guile.  If not, see
   <https://www.gnu.org/licenses/>.  */



/* The null-threads implementation.  We provide the subset of the
   standard pthread API that is used by Guile, but no new threads can
   be created.

   This file merely exits so that Guile can be compiled and run
   without using pthreads.  Improving performance via optimizations
   that are possible in a single-threaded program is not a primary
   goal.
*/

#include <stdlib.h>
#include <signal.h>
#include <errno.h>

#include "libguile/scm.h"

/* Threads
*/
typedef int scm_i_pthread_t;
typedef void scm_i_pthread_attr_t;

static inline scm_i_pthread_t
scm_i_pthread_self (void)
{
  return 0;
}

static inline int
scm_i_pthread_create (scm_i_pthread_t *t, const scm_i_pthread_attr_t *attr,
                      void* (*f) (void*), void *arg)
{
  return ENOSYS;
}

static inline int
scm_i_pthread_detach (scm_i_pthread_t t)
{
  return 0;
}

static inline void
scm_i_pthread_exit (void *retval)
{
  exit (EXIT_SUCCESS);
}

static inline int
scm_i_pthread_cancel (scm_i_pthread_t t)
{
  return 0;
}

static inline int
scm_i_sched_yield (void)
{
  return 0;
}


/* Signals
 */
#if SCM_HAVE_PTHREAD_SIGMASK == 1
static inline int
scm_i_pthread_sigmask (int how, const sigset_t *set, sigset_t *oldset)
{
  return sigprocmask (how, set, oldset);
}
#endif

/* Mutexes
 */
typedef enum {
  SCM_I_PTHREAD_MUTEX_INITIALIZER = 0,
  SCM_I_PTHREAD_MUTEX_LOCKED = 1
} scm_i_pthread_mutex_t;
typedef int scm_i_pthread_mutexattr_t;

static inline int
scm_i_pthread_mutex_init (scm_i_pthread_mutex_t *m,
                          scm_i_pthread_mutexattr_t *attr)
{
  *m = SCM_I_PTHREAD_MUTEX_INITIALIZER;
  return 0;
}

static inline int
scm_i_pthread_mutex_destroy (scm_i_pthread_mutex_t *m)
{
  return 0;
}

static inline int
scm_i_pthread_mutex_trylock(scm_i_pthread_mutex_t *m)
{
  if (*m == SCM_I_PTHREAD_MUTEX_LOCKED)
    return EDEADLK;
  *m = SCM_I_PTHREAD_MUTEX_LOCKED;
  return 0;
}

static inline int
scm_i_pthread_mutex_lock (scm_i_pthread_mutex_t *m)
{
  *m = SCM_I_PTHREAD_MUTEX_LOCKED;
  return 0;
}

static inline int
scm_i_pthread_mutex_unlock (scm_i_pthread_mutex_t *m)
{
  *m = SCM_I_PTHREAD_MUTEX_INITIALIZER;
  return 0;
}

#define scm_i_pthread_mutexattr_recursive   0

/* Condition variables
 */
typedef enum {
  SCM_I_PTHREAD_COND_INITIALIZER = 0
} scm_i_pthread_cond_t;
typedef int scm_i_pthread_condattr_t;

static inline int
scm_i_pthread_cond_init (scm_i_pthread_cond_t *c,
                         scm_i_pthread_condattr_t *attr)
{
  *c = SCM_I_PTHREAD_COND_INITIALIZER;
  return 0;
}

static inline int
scm_i_pthread_cond_destroy (scm_i_pthread_cond_t *c)
{
  return 0;
}

static inline int
scm_i_pthread_cond_signal (scm_i_pthread_cond_t *c)
{
  return 0;
}

static inline int
scm_i_pthread_cond_broadcast (scm_i_pthread_cond_t *c)
{
  return 0;
}

static inline int
scm_i_pthread_cond_wait (scm_i_pthread_cond_t *c, scm_i_pthread_mutex_t *m)
{
  abort ();
  return 0;
}

static inline int
scm_i_pthread_cond_timedwait (scm_i_pthread_cond_t *c, scm_i_pthread_mutex_t *m,
                              const scm_t_timespec *t)
{
  abort();
  return 0;
}

/* Onces
 */
typedef enum {
  SCM_I_PTHREAD_ONCE_INIT = 0,
  SCM_I_PTHREAD_ONCE_ALREADY = 1
} scm_i_pthread_once_t;

static inline int
scm_i_pthread_once (scm_i_pthread_once_t *o, void(*init)(void))
{
  if (*o == SCM_I_PTHREAD_ONCE_INIT)
    {
      *o = SCM_I_PTHREAD_ONCE_ALREADY;
      init ();
    }
  return 0;
}

/* Thread specific storage
 */
typedef struct scm_i_pthread_key_t {
  struct scm_i_pthread_key_t *next;
  void *value;
  void (*destr_func) (void *);
} scm_i_pthread_key_t;

SCM_API int scm_i_pthread_key_create (scm_i_pthread_key_t *key,
				      void (*destr_func) (void *));
#define scm_i_pthread_setspecific(k,p)      ((k).value = (p))
#define scm_i_pthread_getspecific(k)        ((k).value)

/* Convenience functions
 */
#define scm_i_scm_pthread_mutex_lock        scm_i_pthread_mutex_lock
#define scm_i_dynwind_pthread_mutex_lock    scm_i_pthread_mutex_lock
#define scm_i_scm_pthread_cond_wait         scm_i_pthread_cond_wait
#define scm_i_scm_pthread_cond_timedwait    scm_i_pthread_cond_timedwait


#endif  /* SCM_NULL_THREADS_H */