* gc.c, gc.h (scm_i_sweep_mutex): New mutex.
[bpt/guile.git] / libguile / threads.c
CommitLineData
d823b11b 1/* Copyright (C) 1995,1996,1997,1998,2000,2001, 2002 Free Software Foundation, Inc.
7bfd3b9e
JB
2 *
3 * This program is free software; you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation; either version 2, or (at your option)
6 * any later version.
7 *
8 * This program 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
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this software; see the file COPYING. If not, write to
82892bed
JB
15 * the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
16 * Boston, MA 02111-1307 USA
7bfd3b9e
JB
17 *
18 * As a special exception, the Free Software Foundation gives permission
19 * for additional uses of the text contained in its release of GUILE.
20 *
21 * The exception is that, if you link the GUILE library with other files
22 * to produce an executable, this does not by itself cause the
23 * resulting executable to be covered by the GNU General Public License.
24 * Your use of that executable is in no way restricted on account of
25 * linking the GUILE library code into it.
26 *
27 * This exception does not however invalidate any other reasons why
28 * the executable file might be covered by the GNU General Public License.
29 *
30 * This exception applies only to the code released by the
31 * Free Software Foundation under the name GUILE. If you copy
32 * code from other Free Software Foundation releases into a copy of
33 * GUILE, as the General Public License permits, the exception does
34 * not apply to the code that you add in this way. To avoid misleading
35 * anyone as to the status of such modified files, you must delete
36 * this exception notice from them.
37 *
38 * If you write modifications of your own for GUILE, it is your choice
39 * whether to permit this exception to apply to your modifications.
82892bed 40 * If you do not wish that, delete this exception notice. */
1bbd0b84 41
1bbd0b84 42
7bfd3b9e
JB
43\f
44
d823b11b
MV
45/* This file implements nice Scheme level threads on top of the gastly
46 C level threads.
7f0f3eaa
JB
47*/
48
d823b11b
MV
49#include <unistd.h>
50#include <stdio.h>
51#include <assert.h>
52#include <sys/time.h>
5f05c406 53
a0599745 54#include "libguile/_scm.h"
d823b11b
MV
55#include "libguile/validate.h"
56#include "libguile/root.h"
57#include "libguile/eval.h"
58#include "libguile/async.h"
59#include "libguile/ports.h"
60#include "libguile/threads.h"
a0599745 61#include "libguile/dynwind.h"
d823b11b 62#include "libguile/iselect.h"
7bfd3b9e 63
d823b11b 64/*** Queues */
7bfd3b9e 65
d823b11b
MV
66static SCM
67make_queue ()
68{
69 return scm_cons (SCM_EOL, SCM_EOL);
70}
7bfd3b9e 71
d823b11b
MV
72static SCM
73enqueue (SCM q, SCM t)
74{
75 SCM c = scm_cons (t, SCM_EOL);
76 if (SCM_NULLP (SCM_CDR (q)))
77 SCM_SETCDR (q, c);
78 else
79 SCM_SETCDR (SCM_CAR (q), c);
80 SCM_SETCAR (q, c);
81 return c;
82}
7bfd3b9e 83
d823b11b
MV
84static void
85remqueue (SCM q, SCM c)
86{
87 SCM p, prev = q;
88 for (p = SCM_CDR (q); !SCM_NULLP (p); p = SCM_CDR (p))
89 {
90 if (SCM_EQ_P (p, c))
91 {
92 if (SCM_EQ_P (c, SCM_CAR (q)))
93 SCM_SETCAR (q, SCM_CDR (c));
94 SCM_SETCDR (prev, SCM_CDR (c));
95 return;
96 }
97 prev = p;
98 }
99 abort ();
100}
101
102static SCM
103dequeue (SCM q)
104{
105 SCM c = SCM_CDR (q);
106 if (SCM_NULLP (c))
107 return SCM_BOOL_F;
108 else
109 {
110 SCM_SETCDR (q, SCM_CDR (c));
111 if (SCM_NULLP (SCM_CDR (q)))
112 SCM_SETCAR (q, SCM_EOL);
113 return SCM_CAR (c);
114 }
115}
7bfd3b9e 116
d823b11b
MV
117/*** Threads */
118
9bc4701c
MD
119#define THREAD_INITIALIZED_P(t) (t->base != NULL)
120
121struct scm_thread {
d823b11b
MV
122
123 /* Blocking.
124 */
125 scm_t_cond sleep_cond;
126 struct scm_thread *next_waiting;
127
9bc4701c
MD
128 /* This mutex represents this threads right to access the heap.
129 That right can temporarily be taken away by the GC. */
130 scm_t_mutex heap_mutex;
131 int clear_freelists_p; /* set if GC was done while thread was asleep */
132
d823b11b
MV
133 scm_root_state *root;
134 SCM handle;
135 scm_t_thread thread;
136 SCM result;
137 int exited;
138
d823b11b
MV
139 /* For keeping track of the stack and registers. */
140 SCM_STACKITEM *base;
141 SCM_STACKITEM *top;
142 jmp_buf regs;
143
9bc4701c 144};
d823b11b
MV
145
146static SCM
147make_thread (SCM creation_protects)
148{
149 SCM z;
150 scm_thread *t;
151 z = scm_make_smob (scm_tc16_thread);
152 t = SCM_THREAD_DATA (z);
153 t->handle = z;
154 t->result = creation_protects;
155 t->base = NULL;
9bc4701c 156 scm_i_plugin_cond_init (&t->sleep_cond, 0);
dea5539e 157 scm_i_plugin_mutex_init (&t->heap_mutex, &scm_i_plugin_mutex);
9bc4701c 158 t->clear_freelists_p = 0;
d823b11b
MV
159 t->exited = 0;
160 return z;
161}
162
163static void
9bc4701c
MD
164init_thread_creatant (SCM thread,
165 SCM_STACKITEM *base)
d823b11b 166{
9bc4701c
MD
167 scm_thread *t = SCM_THREAD_DATA (thread);
168 t->thread = scm_thread_self ();
d823b11b
MV
169 t->base = base;
170 t->top = NULL;
171}
4079f87e 172
d823b11b
MV
173static SCM
174thread_mark (SCM obj)
175{
176 scm_thread *t = SCM_THREAD_DATA (obj);
177 scm_gc_mark (t->result);
9bc4701c 178 return t->root->handle; /* mark root-state of this thread */
d823b11b
MV
179}
180
181static int
182thread_print (SCM exp, SCM port, scm_print_state *pstate SCM_UNUSED)
183{
184 scm_thread *t = SCM_THREAD_DATA (exp);
185 scm_puts ("#<thread ", port);
1b92fb6b
MD
186 scm_intprint ((unsigned long)t->thread, 10, port);
187 scm_puts (" (", port);
d823b11b 188 scm_intprint ((unsigned long)t, 16, port);
1b92fb6b 189 scm_puts (")>", port);
d823b11b
MV
190 return 1;
191}
192
193static size_t
194thread_free (SCM obj)
195{
196 scm_thread *t = SCM_THREAD_DATA (obj);
197 if (!t->exited)
198 abort ();
199 scm_gc_free (t, sizeof (*t), "thread");
200 return 0;
201}
202
d823b11b 203/*** Scheduling */
f7eca35d 204
9bc4701c
MD
205#define cur_thread (SCM_CURRENT_THREAD->handle)
206scm_t_key scm_i_thread_key;
207scm_t_key scm_i_root_state_key;
d823b11b
MV
208
209void
210scm_i_set_thread_data (void *data)
211{
9bc4701c
MD
212 scm_thread *t = SCM_CURRENT_THREAD;
213 scm_setspecific (scm_i_root_state_key, data);
d823b11b
MV
214 t->root = (scm_root_state *)data;
215}
216
217static void
218resume (scm_thread *t)
219{
d823b11b 220 t->top = NULL;
9bc4701c
MD
221 if (t->clear_freelists_p)
222 {
223 *SCM_FREELIST_LOC (scm_i_freelist) = SCM_EOL;
224 *SCM_FREELIST_LOC (scm_i_freelist2) = SCM_EOL;
225 t->clear_freelists_p = 0;
226 }
d823b11b
MV
227}
228
9bc4701c
MD
229void
230scm_i_enter_guile (scm_thread *t)
d823b11b 231{
9bc4701c 232 scm_i_plugin_mutex_lock (&t->heap_mutex);
d823b11b
MV
233 resume (t);
234}
235
236static scm_thread *
237suspend ()
238{
9bc4701c 239 scm_thread *c = SCM_CURRENT_THREAD;
d823b11b
MV
240
241 /* record top of stack for the GC */
242 c->top = (SCM_STACKITEM *)&c;
243 /* save registers. */
244 SCM_FLUSH_REGISTER_WINDOWS;
245 setjmp (c->regs);
246
247 return c;
248}
249
9bc4701c
MD
250scm_thread *
251scm_i_leave_guile ()
d823b11b 252{
9bc4701c
MD
253 scm_thread *t = suspend ();
254 scm_i_plugin_mutex_unlock (&t->heap_mutex);
255 return t;
d823b11b
MV
256}
257
258/* Put the current thread to sleep until it is explicitely unblocked.
259 */
260static int
261block ()
262{
263 int err;
264 scm_thread *t = suspend ();
9bc4701c 265 err = scm_i_plugin_cond_wait (&t->sleep_cond, &t->heap_mutex);
d823b11b
MV
266 resume (t);
267 return err;
268}
269
270/* Put the current thread to sleep until it is explicitely unblocked
271 or until a signal arrives or until time AT (absolute time) is
272 reached. Return 0 when it has been unblocked; errno otherwise.
273 */
274static int
9bc4701c 275timed_block (const struct timespec *at)
d823b11b
MV
276{
277 int err;
278 scm_thread *t = suspend ();
9bc4701c 279 err = scm_i_plugin_cond_timedwait (&t->sleep_cond, &t->heap_mutex, at);
d823b11b
MV
280 resume (t);
281 return err;
282}
283
284/* Unblock a sleeping thread.
285 */
286static void
287unblock (scm_thread *t)
288{
9bc4701c 289 scm_i_plugin_cond_signal (&t->sleep_cond);
d823b11b
MV
290}
291
292/*** Thread creation */
293
9bc4701c 294static scm_t_mutex thread_admin_mutex;
d823b11b
MV
295static SCM all_threads;
296static int thread_count;
297
298typedef struct launch_data {
299 SCM thread;
300 SCM rootcont;
301 scm_t_catch_body body;
302 void *body_data;
303 scm_t_catch_handler handler;
304 void *handler_data;
305} launch_data;
306
307static SCM
308body_bootstrip (launch_data* data)
309{
310 /* First save the new root continuation */
311 data->rootcont = scm_root->rootcont;
312 return (data->body) (data->body_data);
313}
314
315static SCM
316handler_bootstrip (launch_data* data, SCM tag, SCM throw_args)
317{
318 scm_root->rootcont = data->rootcont;
319 return (data->handler) (data->handler_data, tag, throw_args);
320}
321
322static void
323really_launch (SCM_STACKITEM *base, launch_data *data)
324{
9bc4701c
MD
325 SCM thread;
326 scm_thread *t;
327 thread = data->thread;
328 t = SCM_THREAD_DATA (thread);
329 SCM_FREELIST_CREATE (scm_i_freelist);
330 SCM_FREELIST_CREATE (scm_i_freelist2);
331 scm_setspecific (scm_i_thread_key, t);
332 scm_setspecific (scm_i_root_state_key, t->root);
333 scm_i_plugin_mutex_lock (&t->heap_mutex); /* ensure that we "own" the heap */
334 init_thread_creatant (thread, base); /* must own the heap */
335
d823b11b
MV
336 data->rootcont = SCM_BOOL_F;
337 t->result =
338 scm_internal_cwdr ((scm_t_catch_body) body_bootstrip,
339 data,
340 (scm_t_catch_handler) handler_bootstrip,
341 data, base);
094b640d 342 scm_i_leave_guile (); /* release the heap */
d823b11b
MV
343 free (data);
344
9bc4701c
MD
345 scm_i_plugin_mutex_lock (&thread_admin_mutex);
346 all_threads = scm_delq_x (thread, all_threads);
d823b11b
MV
347 t->exited = 1;
348 thread_count--;
e29e0b09 349 /* detach before unlocking in order to not become joined when detached */
c4c52ebe 350 scm_thread_detach (t->thread);
e29e0b09 351 scm_i_plugin_mutex_unlock (&thread_admin_mutex);
d823b11b
MV
352}
353
9bc4701c 354static void *
d823b11b
MV
355launch_thread (void *p)
356{
357 really_launch ((SCM_STACKITEM *)&p, (launch_data *)p);
9bc4701c 358 return 0;
d823b11b
MV
359}
360
361static SCM
362create_thread (scm_t_catch_body body, void *body_data,
363 scm_t_catch_handler handler, void *handler_data,
364 SCM protects)
365{
366 SCM thread;
367
368 /* Make new thread. The first thing the new thread will do is to
369 lock guile_mutex. Thus, we can safely complete its
370 initialization after creating it. While the new thread starts,
371 all its data is protected via all_threads.
372 */
373
374 {
375 scm_t_thread th;
c4c52ebe 376 SCM root, old_winds;
d823b11b 377 launch_data *data;
9bc4701c 378 scm_thread *t;
d823b11b
MV
379 int err;
380
381 /* Unwind wind chain. */
382 old_winds = scm_dynwinds;
383 scm_dowinds (SCM_EOL, scm_ilength (scm_root->dynwinds));
384
385 /* Allocate thread locals. */
386 root = scm_make_root (scm_root->handle);
387 data = scm_malloc (sizeof (launch_data));
388
389 /* Make thread. */
390 thread = make_thread (protects);
391 data->thread = thread;
392 data->body = body;
393 data->body_data = body_data;
394 data->handler = handler;
395 data->handler_data = handler_data;
9bc4701c
MD
396 t = SCM_THREAD_DATA (thread);
397 /* must initialize root state pointer before the thread is linked
398 into all_threads */
399 t->root = SCM_ROOT_STATE (root);
0d48aca5
MD
400 /* disconnect from parent, to prevent remembering dead threads */
401 t->root->parent = SCM_BOOL_F;
9bc4701c
MD
402
403 /* In order to avoid the need of synchronization between parent
404 and child thread, we need to insert the child into all_threads
405 before creation. */
c4c52ebe
MD
406 {
407 SCM new_threads = scm_cons (thread, SCM_BOOL_F); /* could cause GC */
408 scm_thread *parent = scm_i_leave_guile (); /* to prevent deadlock */
409 scm_i_plugin_mutex_lock (&thread_admin_mutex);
410 SCM_SETCDR (new_threads, all_threads);
411 all_threads = new_threads;
412 thread_count++;
413 scm_i_plugin_mutex_unlock (&thread_admin_mutex);
392d2833
MD
414
415 scm_remember_upto_here_1 (root);
416
c4c52ebe
MD
417 scm_i_enter_guile (parent);
418 }
9bc4701c
MD
419
420 err = scm_i_plugin_thread_create (&th, 0, launch_thread, (void *) data);
421 if (err != 0)
d823b11b 422 {
9bc4701c
MD
423 scm_i_plugin_mutex_lock (&thread_admin_mutex);
424 all_threads = scm_delq_x (thread, all_threads);
425 ((scm_thread *) SCM_THREAD_DATA(thread))->exited = 1;
426 thread_count--;
427 scm_i_plugin_mutex_unlock (&thread_admin_mutex);
d823b11b 428 }
d823b11b
MV
429
430 /* Return to old dynamic context. */
431 scm_dowinds (old_winds, - scm_ilength (old_winds));
432
433 if (err)
434 {
435 errno = err;
436 scm_syserror ("create-thread");
437 }
438 }
439
440 return thread;
441}
442
443SCM_DEFINE (scm_call_with_new_thread, "call-with-new-thread", 2, 0, 0,
444 (SCM thunk, SCM handler),
445"Evaluate @var{(thunk)} in a new thread, and new dynamic context, "
446"returning a new thread object representing the thread. "
447"If an error occurs during evaluation, call error-thunk, passing it an "
448"error code describing the condition. "
449"If this happens, the error-thunk is called outside the scope of the new "
450"root -- it is called in the same dynamic context in which "
451"with-new-thread was evaluated, but not in the callers thread. "
452"All the evaluation rules for dynamic roots apply to threads.")
453#define FUNC_NAME s_scm_call_with_new_thread
454{
455 SCM_ASSERT (SCM_NFALSEP (scm_thunk_p (thunk)), thunk, SCM_ARG1, FUNC_NAME);
456 SCM_ASSERT (SCM_NFALSEP (scm_procedure_p (handler)), handler, SCM_ARG2,
457 FUNC_NAME);
458
459 return create_thread ((scm_t_catch_body) scm_call_0, thunk,
460 (scm_t_catch_handler) scm_apply_1, handler,
461 scm_cons (thunk, handler));
462}
463#undef FUNC_NAME
464
29717c89
MD
465SCM_DEFINE (scm_yield, "yield", 0, 0, 0,
466 (),
467"Move the calling thread to the end of the scheduling queue.")
468#define FUNC_NAME s_scm_yield
469{
470 return SCM_BOOL (scm_thread_yield);
471}
472#undef FUNC_NAME
473
d823b11b 474SCM_DEFINE (scm_join_thread, "join-thread", 1, 0, 0,
5f05c406 475 (SCM thread),
d823b11b
MV
476"Suspend execution of the calling thread until the target @var{thread} "
477"terminates, unless the target @var{thread} has already terminated. ")
478#define FUNC_NAME s_scm_join_thread
5f05c406 479{
d823b11b
MV
480 scm_thread *t;
481 SCM res;
482
483 SCM_VALIDATE_THREAD (1, thread);
484 if (SCM_EQ_P (cur_thread, thread))
485 SCM_MISC_ERROR ("can not join the current thread", SCM_EOL);
486
487 t = SCM_THREAD_DATA (thread);
488 if (!t->exited)
489 {
0b6843b1
MD
490 scm_thread *c;
491 c = scm_i_leave_guile ();
9bc4701c 492 while (!THREAD_INITIALIZED_P (t))
0b6843b1 493 scm_i_plugin_thread_yield ();
9bc4701c
MD
494 scm_thread_join (t->thread, 0);
495 scm_i_enter_guile (c);
d823b11b
MV
496 }
497 res = t->result;
498 t->result = SCM_BOOL_F;
499 return res;
5f05c406
MV
500}
501#undef FUNC_NAME
502
28d52ebb
MD
503SCM *scm_loc_sys_thread_handler;
504
505SCM
506scm_i_make_future (SCM thunk)
507{
508 SCM_RETURN_NEWSMOB2 (scm_tc16_future,
509 create_thread ((scm_t_catch_body) scm_call_0,
510 thunk,
511 (scm_t_catch_handler) scm_apply_1,
512 *scm_loc_sys_thread_handler,
513 scm_cons (thunk,
514 *scm_loc_sys_thread_handler)),
515 scm_make_rec_mutex ());
516}
517
518static size_t
519future_free (SCM future)
520{
521 scm_rec_mutex_free (SCM_FUTURE_MUTEX (future));
522 return 0;
523}
524
525static int
526future_print (SCM exp, SCM port, scm_print_state *pstate)
527{
528 int writingp = SCM_WRITINGP (pstate);
529 scm_puts ("#<future ", port);
530 SCM_SET_WRITINGP (pstate, 1);
531 scm_iprin1 (SCM_FUTURE_DATA (exp), port, pstate);
532 SCM_SET_WRITINGP (pstate, writingp);
533 scm_putc ('>', port);
534 return !0;
535}
536
537SCM_DEFINE (scm_future_ref, "future-ref", 1, 0, 0,
538 (SCM future),
539 "If the future @var{x} has not been computed yet, compute and\n"
540 "return @var{x}, otherwise just return the previously computed\n"
541 "value.")
542#define FUNC_NAME s_scm_future_ref
543{
544 SCM_VALIDATE_FUTURE (1, future);
545 scm_rec_mutex_lock (SCM_FUTURE_MUTEX (future));
546 if (!SCM_FUTURE_COMPUTED_P (future))
547 {
548 SCM value = scm_join_thread (SCM_FUTURE_DATA (future));
549 if (!SCM_FUTURE_COMPUTED_P (future))
550 {
551 SCM_SET_FUTURE_DATA (future, value);
552 SCM_SET_FUTURE_COMPUTED (future);
553 }
554 }
555 scm_rec_mutex_unlock (SCM_FUTURE_MUTEX (future));
556 return SCM_FUTURE_DATA (future);
557}
558#undef FUNC_NAME
559
9bc4701c 560/*** Fair mutexes */
4079f87e 561
d823b11b
MV
562/* We implement our own mutex type since we want them to be 'fair', we
563 want to do fancy things while waiting for them (like running
564 asyncs) and we want to support waiting on many things at once.
565 Also, we might add things that are nice for debugging.
566*/
4079f87e 567
9bc4701c 568typedef struct fair_mutex {
d823b11b 569 /* the thread currently owning the mutex, or SCM_BOOL_F. */
9bc4701c
MD
570 scm_t_mutex lock;
571 int lockedp;
d823b11b
MV
572 SCM owner;
573 /* how much the owner owns us. */
574 int level;
575 /* the threads waiting for this mutex. */
576 SCM waiting;
9bc4701c 577} fair_mutex;
5f05c406 578
d823b11b 579static SCM
9bc4701c 580fair_mutex_mark (SCM mx)
d823b11b 581{
9bc4701c 582 fair_mutex *m = SCM_MUTEX_DATA (mx);
d823b11b
MV
583 scm_gc_mark (m->owner);
584 return m->waiting;
585}
4079f87e 586
9bc4701c 587SCM_DEFINE (scm_make_fair_mutex, "make-fair-mutex", 0, 0, 0,
d823b11b 588 (void),
9bc4701c
MD
589 "Create a new fair mutex object. ")
590#define FUNC_NAME s_scm_make_fair_mutex
d823b11b 591{
9bc4701c
MD
592 SCM mx = scm_make_smob (scm_tc16_fair_mutex);
593 fair_mutex *m = SCM_MUTEX_DATA (mx);
dea5539e 594 scm_i_plugin_mutex_init (&m->lock, &scm_i_plugin_mutex);
9bc4701c 595 m->lockedp = 0;
d823b11b
MV
596 m->owner = SCM_BOOL_F;
597 m->level = 0;
598 m->waiting = make_queue ();
599 return mx;
600}
601#undef FUNC_NAME
4079f87e 602
9bc4701c
MD
603static int
604fair_mutex_lock (fair_mutex *m)
d823b11b 605{
9bc4701c
MD
606 scm_i_plugin_mutex_lock (&m->lock);
607#if 0
608 /* Need to wait if another thread is just temporarily unlocking.
609 This is happens very seldom and only when the other thread is
610 between scm_mutex_unlock and scm_i_plugin_mutex_lock below. */
611 while (m->lockedp)
612 SCM_TICK;
613 m->lockedp = 1;
614#endif
615
d823b11b
MV
616 if (m->owner == SCM_BOOL_F)
617 m->owner = cur_thread;
618 else if (m->owner == cur_thread)
619 m->level++;
620 else
621 {
622 while (1)
623 {
624 SCM c = enqueue (m->waiting, cur_thread);
9bc4701c
MD
625 int err;
626 /* Note: It's important that m->lock is never locked for
627 any longer amount of time since that could prevent GC */
628 scm_i_plugin_mutex_unlock (&m->lock);
629 err = block ();
d823b11b 630 if (m->owner == cur_thread)
9bc4701c
MD
631 return 0;
632 scm_i_plugin_mutex_lock (&m->lock);
d823b11b 633 remqueue (m->waiting, c);
9bc4701c 634 scm_i_plugin_mutex_unlock (&m->lock);
d823b11b 635 if (err)
9bc4701c 636 return err;
d823b11b 637 SCM_ASYNC_TICK;
9bc4701c 638 scm_i_plugin_mutex_lock (&m->lock);
d823b11b
MV
639 }
640 }
9bc4701c
MD
641 scm_i_plugin_mutex_unlock (&m->lock);
642 return 0;
d823b11b 643}
7bfd3b9e 644
9bc4701c
MD
645static int
646fair_mutex_trylock (fair_mutex *m)
d823b11b 647{
9bc4701c 648 scm_i_plugin_mutex_lock (&m->lock);
d823b11b
MV
649 if (m->owner == SCM_BOOL_F)
650 m->owner = cur_thread;
651 else if (m->owner == cur_thread)
652 m->level++;
653 else
9bc4701c
MD
654 {
655 scm_i_plugin_mutex_unlock (&m->lock);
656 return EBUSY;
657 }
658 scm_i_plugin_mutex_unlock (&m->lock);
659 return 0;
d823b11b 660}
d823b11b 661
9bc4701c
MD
662static int
663fair_mutex_unlock (fair_mutex *m)
5f05c406 664{
9bc4701c 665 scm_i_plugin_mutex_lock (&m->lock);
d823b11b
MV
666 if (m->owner != cur_thread)
667 {
9bc4701c
MD
668 scm_i_plugin_mutex_unlock (&m->lock);
669 return EPERM;
d823b11b
MV
670 }
671 else if (m->level > 0)
672 m->level--;
673 else
674 {
675 SCM next = dequeue (m->waiting);
676 if (!SCM_FALSEP (next))
677 {
678 m->owner = next;
679 unblock (SCM_THREAD_DATA (next));
d823b11b
MV
680 }
681 else
682 m->owner = SCM_BOOL_F;
683 }
9bc4701c
MD
684 scm_i_plugin_mutex_unlock (&m->lock);
685 return 0;
5f05c406
MV
686}
687
9bc4701c 688/*** Fair condition variables */
7bfd3b9e 689
d823b11b
MV
690/* Like mutexes, we implement our own condition variables using the
691 primitives above.
692*/
5f05c406 693
9bc4701c
MD
694typedef struct fair_cond {
695 scm_t_mutex lock;
d823b11b
MV
696 /* the threads waiting for this condition. */
697 SCM waiting;
9bc4701c 698} fair_cond;
5f05c406 699
d823b11b 700static SCM
9bc4701c 701fair_cond_mark (SCM cv)
5f05c406 702{
9bc4701c 703 fair_cond *c = SCM_CONDVAR_DATA (cv);
d823b11b 704 return c->waiting;
5f05c406
MV
705}
706
9bc4701c
MD
707SCM_DEFINE (scm_make_fair_condition_variable, "make-fair-condition-variable", 0, 0, 0,
708 (void),
709 "Make a new fair condition variable.")
710#define FUNC_NAME s_scm_make_fair_condition_variable
711{
712 SCM cv = scm_make_smob (scm_tc16_fair_condvar);
713 fair_cond *c = SCM_CONDVAR_DATA (cv);
714 scm_i_plugin_mutex_init (&c->lock, 0);
715 c->waiting = make_queue ();
716 return cv;
717}
718#undef FUNC_NAME
719
720static int
721fair_cond_timedwait (fair_cond *c,
722 fair_mutex *m,
723 const struct timespec *waittime)
724{
725 int err;
726 scm_i_plugin_mutex_lock (&c->lock);
727
728 while (1)
729 {
730 enqueue (c->waiting, cur_thread);
731 scm_i_plugin_mutex_unlock (&c->lock);
732 fair_mutex_unlock (m); /*fixme* - not thread safe */
733 if (waittime == NULL)
734 err = block ();
735 else
736 err = timed_block (waittime);
737 fair_mutex_lock (m);
738 if (err)
739 return err;
740 /* XXX - check whether we have been signalled. */
741 break;
742 }
743 return err;
744}
745
746static int
747fair_cond_signal (fair_cond *c)
748{
749 SCM th;
750 scm_i_plugin_mutex_lock (&c->lock);
751 if (!SCM_FALSEP (th = dequeue (c->waiting)))
752 unblock (SCM_THREAD_DATA (th));
753 scm_i_plugin_mutex_unlock (&c->lock);
754 return 0;
755}
756
757static int
758fair_cond_broadcast (fair_cond *c)
759{
760 SCM th;
761 scm_i_plugin_mutex_lock (&c->lock);
762 while (!SCM_FALSEP (th = dequeue (c->waiting)))
763 unblock (SCM_THREAD_DATA (th));
764 scm_i_plugin_mutex_unlock (&c->lock);
765 return 0;
766}
767
768/*** Mutexes */
769
770SCM_DEFINE (scm_make_mutex, "make-mutex", 0, 0, 0,
771 (void),
772 "Create a new mutex object. ")
773#define FUNC_NAME s_scm_make_mutex
774{
775 SCM mx = scm_make_smob (scm_tc16_mutex);
dea5539e 776 scm_i_plugin_mutex_init (SCM_MUTEX_DATA (mx), &scm_i_plugin_mutex);
9bc4701c
MD
777 return mx;
778}
779#undef FUNC_NAME
780
781/*fixme* change documentation */
782SCM_DEFINE (scm_lock_mutex, "lock-mutex", 1, 0, 0,
783 (SCM mx),
784"Lock @var{mutex}. If the mutex is already locked, the calling thread "
785"blocks until the mutex becomes available. The function returns when "
786"the calling thread owns the lock on @var{mutex}. Locking a mutex that "
787"a thread already owns will succeed right away and will not block the "
788"thread. That is, Guile's mutexes are @emph{recursive}. ")
789#define FUNC_NAME s_scm_lock_mutex
790{
791 int err;
792 SCM_VALIDATE_MUTEX (1, mx);
793
794 if (SCM_TYP16 (mx) == scm_tc16_fair_mutex)
795 err = fair_mutex_lock (SCM_MUTEX_DATA (mx));
796 else
797 {
798 scm_t_mutex *m = SCM_MUTEX_DATA (mx);
0b6843b1 799 err = scm_mutex_lock (m);
9bc4701c
MD
800 }
801
802 if (err)
803 {
804 errno = err;
805 SCM_SYSERROR;
806 }
807 return SCM_BOOL_T;
808}
809#undef FUNC_NAME
810
811SCM_DEFINE (scm_try_mutex, "try-mutex", 1, 0, 0,
812 (SCM mx),
813"Try to lock @var{mutex}. If the mutex is already locked by someone "
814"else, return @code{#f}. Else lock the mutex and return @code{#t}. ")
815#define FUNC_NAME s_scm_try_mutex
816{
817 int err;
818 SCM_VALIDATE_MUTEX (1, mx);
819
820 if (SCM_TYP16 (mx) == scm_tc16_fair_mutex)
821 err = fair_mutex_trylock (SCM_MUTEX_DATA (mx));
822 else
823 {
824 scm_t_mutex *m = SCM_MUTEX_DATA (mx);
0b6843b1 825 err = scm_mutex_trylock (m);
9bc4701c
MD
826 }
827
828 if (err == EBUSY)
829 return SCM_BOOL_F;
830
831 if (err)
832 {
833 errno = err;
834 SCM_SYSERROR;
835 }
836
837 return SCM_BOOL_T;
838}
839#undef FUNC_NAME
840
841SCM_DEFINE (scm_unlock_mutex, "unlock-mutex", 1, 0, 0,
842 (SCM mx),
843"Unlocks @var{mutex} if the calling thread owns the lock on "
844"@var{mutex}. Calling unlock-mutex on a mutex not owned by the current "
845"thread results in undefined behaviour. Once a mutex has been unlocked, "
846"one thread blocked on @var{mutex} is awakened and grabs the mutex "
847"lock. Every call to @code{lock-mutex} by this thread must be matched "
848"with a call to @code{unlock-mutex}. Only the last call to "
849"@code{unlock-mutex} will actually unlock the mutex. ")
850#define FUNC_NAME s_scm_unlock_mutex
851{
852 int err;
853 SCM_VALIDATE_MUTEX (1, mx);
854
855 if (SCM_TYP16 (mx) == scm_tc16_fair_mutex)
856 {
857 err = fair_mutex_unlock (SCM_MUTEX_DATA (mx));
858 if (err == EPERM)
859 {
860 fair_mutex *m = SCM_MUTEX_DATA (mx);
861 if (m->owner != cur_thread)
862 {
863 if (m->owner == SCM_BOOL_F)
864 SCM_MISC_ERROR ("mutex not locked", SCM_EOL);
865 else
866 SCM_MISC_ERROR ("mutex not locked by this thread", SCM_EOL);
867 }
868 }
869 }
870 else
871 {
872 scm_t_mutex *m = SCM_MUTEX_DATA (mx);
0b6843b1 873 err = scm_mutex_unlock (m);
9bc4701c
MD
874 }
875
876 if (err)
877 {
878 errno = err;
879 SCM_SYSERROR;
880 }
881 return SCM_BOOL_T;
882}
883#undef FUNC_NAME
884
885/*** Condition variables */
886
d823b11b
MV
887SCM_DEFINE (scm_make_condition_variable, "make-condition-variable", 0, 0, 0,
888 (void),
889 "Make a new condition variable.")
890#define FUNC_NAME s_scm_make_condition_variable
5f05c406 891{
d823b11b 892 SCM cv = scm_make_smob (scm_tc16_condvar);
9bc4701c 893 scm_i_plugin_cond_init (SCM_CONDVAR_DATA (cv), 0);
d823b11b 894 return cv;
5f05c406 895}
d823b11b 896#undef FUNC_NAME
5f05c406 897
d823b11b
MV
898SCM_DEFINE (scm_timed_wait_condition_variable, "wait-condition-variable", 2, 1, 0,
899 (SCM cv, SCM mx, SCM t),
900"Wait until @var{cond-var} has been signalled. While waiting, "
901"@var{mutex} is atomically unlocked (as with @code{unlock-mutex}) and "
902"is locked again when this function returns. When @var{time} is given, "
903"it specifies a point in time where the waiting should be aborted. It "
904"can be either a integer as returned by @code{current-time} or a pair "
905"as returned by @code{gettimeofday}. When the waiting is aborted the "
906"mutex is locked and @code{#f} is returned. When the condition "
907"variable is in fact signalled, the mutex is also locked and @code{#t} "
908"is returned. ")
909#define FUNC_NAME s_scm_timed_wait_condition_variable
5f05c406 910{
d823b11b
MV
911 struct timespec waittime;
912 int err;
913
914 SCM_VALIDATE_CONDVAR (1, cv);
915 SCM_VALIDATE_MUTEX (2, mx);
9bc4701c
MD
916 if (!((SCM_TYP16 (cv) == scm_tc16_condvar
917 && SCM_TYP16 (mx) == scm_tc16_mutex)
918 || (SCM_TYP16 (cv) == scm_tc16_fair_condvar
919 && SCM_TYP16 (mx) == scm_tc16_fair_mutex)))
920 SCM_MISC_ERROR ("Condition variable and mutex are of different kinds.",
921 SCM_EOL);
922
d823b11b
MV
923 if (!SCM_UNBNDP (t))
924 {
925 if (SCM_CONSP (t))
926 {
9bc4701c
MD
927 SCM_VALIDATE_UINT_COPY (3, SCM_CAR (t), waittime.tv_sec);
928 SCM_VALIDATE_UINT_COPY (3, SCM_CDR (t), waittime.tv_nsec);
d823b11b
MV
929 waittime.tv_nsec *= 1000;
930 }
931 else
932 {
933 SCM_VALIDATE_UINT_COPY (3, t, waittime.tv_sec);
934 waittime.tv_nsec = 0;
935 }
936 }
937
9bc4701c
MD
938 if (SCM_TYP16 (cv) == scm_tc16_fair_condvar)
939 err = fair_cond_timedwait (SCM_CONDVAR_DATA (cv),
940 SCM_MUTEX_DATA (mx),
941 SCM_UNBNDP (t) ? NULL : &waittime);
942 else
943 {
944 scm_t_cond *c = SCM_CONDVAR_DATA (cv);
945 scm_t_mutex *m = SCM_MUTEX_DATA (mx);
0b6843b1 946 err = scm_cond_wait (c, m);
9bc4701c 947 }
d823b11b 948
9bc4701c 949 if (err)
d823b11b 950 {
9bc4701c
MD
951 errno = err;
952 SCM_SYSERROR;
d823b11b 953 }
9bc4701c 954 return SCM_BOOL_T;
5f05c406 955}
d823b11b 956#undef FUNC_NAME
5f05c406 957
d823b11b
MV
958SCM_DEFINE (scm_signal_condition_variable, "signal-condition-variable", 1, 0, 0,
959 (SCM cv),
960 "Wake up one thread that is waiting for @var{cv}")
961#define FUNC_NAME s_scm_signal_condition_variable
5f05c406 962{
d823b11b 963 SCM_VALIDATE_CONDVAR (1, cv);
9bc4701c
MD
964 if (SCM_TYP16 (cv) == scm_tc16_fair_condvar)
965 fair_cond_signal (SCM_CONDVAR_DATA (cv));
966 else
967 {
968 scm_t_cond *c = SCM_CONDVAR_DATA (cv);
0b6843b1 969 scm_cond_signal (c);
9bc4701c 970 }
d823b11b 971 return SCM_BOOL_T;
5f05c406 972}
d823b11b 973#undef FUNC_NAME
5f05c406 974
d823b11b
MV
975SCM_DEFINE (scm_broadcast_condition_variable, "broadcast-condition-variable", 1, 0, 0,
976 (SCM cv),
977 "Wake up all threads that are waiting for @var{cv}. ")
978#define FUNC_NAME s_scm_broadcast_condition_variable
5f05c406 979{
d823b11b 980 SCM_VALIDATE_CONDVAR (1, cv);
9bc4701c
MD
981 if (SCM_TYP16 (cv) == scm_tc16_fair_condvar)
982 fair_cond_broadcast (SCM_CONDVAR_DATA (cv));
983 else
984 {
985 scm_t_cond *c = SCM_CONDVAR_DATA (cv);
0b6843b1 986 scm_cond_broadcast (c);
9bc4701c 987 }
d823b11b 988 return SCM_BOOL_T;
5f05c406 989}
d823b11b 990#undef FUNC_NAME
5f05c406 991
d823b11b
MV
992/*** Marking stacks */
993
994/* XXX - what to do with this? Do we need to handle this for blocked
995 threads as well?
996*/
997#ifdef __ia64__
998# define SCM_MARK_BACKING_STORE() do { \
999 ucontext_t ctx; \
1000 SCM_STACKITEM * top, * bot; \
1001 getcontext (&ctx); \
1002 scm_mark_locations ((SCM_STACKITEM *) &ctx.uc_mcontext, \
1003 ((size_t) (sizeof (SCM_STACKITEM) - 1 + sizeof ctx.uc_mcontext) \
1004 / sizeof (SCM_STACKITEM))); \
1005 bot = (SCM_STACKITEM *) __libc_ia64_register_backing_store_base; \
1006 top = (SCM_STACKITEM *) ctx.uc_mcontext.sc_ar_bsp; \
1007 scm_mark_locations (bot, top - bot); } while (0)
1008#else
1009# define SCM_MARK_BACKING_STORE()
1010#endif
1011
1012void
1013scm_threads_mark_stacks (void)
5f05c406 1014{
d823b11b
MV
1015 volatile SCM c;
1016 for (c = all_threads; !SCM_NULLP (c); c = SCM_CDR (c))
1017 {
1018 scm_thread *t = SCM_THREAD_DATA (SCM_CAR (c));
9bc4701c 1019 if (!THREAD_INITIALIZED_P (t))
d823b11b
MV
1020 {
1021 /* Not fully initialized yet. */
1022 continue;
1023 }
1024 if (t->top == NULL)
1025 {
9bc4701c
MD
1026 long stack_len;
1027#ifdef SCM_DEBUG
1028 if (t->thread != scm_thread_self ())
1029 abort ();
1030#endif
d823b11b
MV
1031 /* Active thread */
1032 /* stack_len is long rather than sizet in order to guarantee
1033 that &stack_len is long aligned */
1034#ifdef STACK_GROWS_UP
9bc4701c
MD
1035 stack_len = ((SCM_STACKITEM *) (&t) -
1036 (SCM_STACKITEM *) thread->base);
d823b11b
MV
1037
1038 /* Protect from the C stack. This must be the first marking
1039 * done because it provides information about what objects
1040 * are "in-use" by the C code. "in-use" objects are those
1041 * for which the information about length and base address must
1042 * remain usable. This requirement is stricter than a liveness
1043 * requirement -- in particular, it constrains the implementation
1044 * of scm_resizuve.
1045 */
1046 SCM_FLUSH_REGISTER_WINDOWS;
1047 /* This assumes that all registers are saved into the jmp_buf */
1048 setjmp (scm_save_regs_gc_mark);
1049 scm_mark_locations ((SCM_STACKITEM *) scm_save_regs_gc_mark,
1050 ((size_t) sizeof scm_save_regs_gc_mark
1051 / sizeof (SCM_STACKITEM)));
1052
1053 scm_mark_locations (((size_t) t->base,
1054 (sizet) stack_len));
1055#else
9bc4701c
MD
1056 stack_len = ((SCM_STACKITEM *) t->base -
1057 (SCM_STACKITEM *) (&t));
d823b11b
MV
1058
1059 /* Protect from the C stack. This must be the first marking
1060 * done because it provides information about what objects
1061 * are "in-use" by the C code. "in-use" objects are those
1062 * for which the information about length and base address must
1063 * remain usable. This requirement is stricter than a liveness
1064 * requirement -- in particular, it constrains the implementation
1065 * of scm_resizuve.
1066 */
1067 SCM_FLUSH_REGISTER_WINDOWS;
1068 /* This assumes that all registers are saved into the jmp_buf */
1069 setjmp (scm_save_regs_gc_mark);
1070 scm_mark_locations ((SCM_STACKITEM *) scm_save_regs_gc_mark,
1071 ((size_t) sizeof scm_save_regs_gc_mark
1072 / sizeof (SCM_STACKITEM)));
1073
1074 scm_mark_locations ((SCM_STACKITEM *) &t,
1075 stack_len);
1076#endif
1077 }
1078 else
1079 {
1080 /* Suspended thread */
1081#ifdef STACK_GROWS_UP
1082 long stack_len = t->top - t->base;
1083 scm_mark_locations (t->base, stack_len);
1084#else
1085 long stack_len = t->base - t->top;
1086 scm_mark_locations (t->top, stack_len);
1087#endif
1088 scm_mark_locations ((SCM_STACKITEM *) t->regs,
1089 ((size_t) sizeof(t->regs)
1090 / sizeof (SCM_STACKITEM)));
1091 }
1092 }
5f05c406
MV
1093}
1094
d823b11b
MV
1095/*** Select */
1096
911782b7 1097int
d823b11b
MV
1098scm_internal_select (int nfds,
1099 SELECT_TYPE *readfds,
1100 SELECT_TYPE *writefds,
1101 SELECT_TYPE *exceptfds,
1102 struct timeval *timeout)
5f05c406 1103{
d823b11b 1104 int res, eno;
9bc4701c
MD
1105 scm_thread *c = scm_i_leave_guile ();
1106 res = scm_i_plugin_select (nfds, readfds, writefds, exceptfds, timeout);
d823b11b 1107 eno = errno;
9bc4701c 1108 scm_i_enter_guile (c);
d823b11b
MV
1109 SCM_ASYNC_TICK;
1110 errno = eno;
1111 return res;
5f05c406
MV
1112}
1113
9bc4701c
MD
1114/* Low-level C API */
1115
1116SCM
1117scm_spawn_thread (scm_t_catch_body body, void *body_data,
1118 scm_t_catch_handler handler, void *handler_data)
1119{
1120 return create_thread (body, body_data, handler, handler_data, SCM_BOOL_F);
1121}
1122
9bc4701c
MD
1123int
1124scm_mutex_lock (scm_t_mutex *m)
1125{
1126 scm_thread *t = scm_i_leave_guile ();
1127 int res = scm_i_plugin_mutex_lock (m);
1128 scm_i_enter_guile (t);
1129 return res;
1130}
1131
28d52ebb
MD
1132scm_t_rec_mutex *
1133scm_make_rec_mutex ()
1134{
1135 scm_t_rec_mutex *m = scm_malloc (sizeof (scm_t_rec_mutex));
1136 scm_i_plugin_rec_mutex_init (m, &scm_i_plugin_rec_mutex);
1137 return m;
1138}
1139
1140void
1141scm_rec_mutex_free (scm_t_rec_mutex *m)
1142{
1143 scm_i_plugin_rec_mutex_destroy (m);
1144 free (m);
1145}
1146
1147int
1148scm_rec_mutex_lock (scm_t_rec_mutex *m)
1149{
1150 scm_thread *t = scm_i_leave_guile ();
1151 int res = scm_i_plugin_rec_mutex_lock (m);
1152 scm_i_enter_guile (t);
1153 return res;
1154}
1155
9bc4701c
MD
1156int
1157scm_cond_wait (scm_t_cond *c, scm_t_mutex *m)
1158{
1159 scm_thread *t = scm_i_leave_guile ();
1160 scm_i_plugin_cond_wait (c, m);
1161 scm_i_enter_guile (t);
1162 return 0;
1163}
1164
1165int
06babecc 1166scm_cond_timedwait (scm_t_cond *c, scm_t_mutex *m, const struct timespec *wt)
9bc4701c
MD
1167{
1168 scm_thread *t = scm_i_leave_guile ();
06babecc 1169 int res = scm_i_plugin_cond_timedwait (c, m, wt);
9bc4701c
MD
1170 scm_i_enter_guile (t);
1171 return res;
1172}
9bc4701c
MD
1173
1174void
1175scm_enter_guile ()
1176{
1177 scm_i_enter_guile (SCM_CURRENT_THREAD);
1178}
1179
1180void
1181scm_leave_guile ()
1182{
1183 scm_i_leave_guile ();
1184}
1185
d823b11b
MV
1186unsigned long
1187scm_thread_usleep (unsigned long usecs)
5f05c406 1188{
d823b11b
MV
1189 struct timeval tv;
1190 tv.tv_usec = usecs % 1000000;
1191 tv.tv_sec = usecs / 1000000;
1192 scm_internal_select (0, NULL, NULL, NULL, &tv);
1193 return tv.tv_usec + tv.tv_sec*1000000;
5f05c406
MV
1194}
1195
d823b11b
MV
1196unsigned long
1197scm_thread_sleep (unsigned long secs)
6c214b62 1198{
d823b11b
MV
1199 struct timeval tv;
1200 tv.tv_usec = 0;
1201 tv.tv_sec = secs;
1202 scm_internal_select (0, NULL, NULL, NULL, &tv);
1203 return tv.tv_sec;
6c214b62
MD
1204}
1205
d823b11b
MV
1206/*** Misc */
1207
1208SCM_DEFINE (scm_current_thread, "current-thread", 0, 0, 0,
1209 (void),
1210 "Return the thread that called this function.")
1211#define FUNC_NAME s_scm_current_thread
1212{
1213 return cur_thread;
1214}
1215#undef FUNC_NAME
1216
1217SCM_DEFINE (scm_all_threads, "all-threads", 0, 0, 0,
1218 (void),
1219 "Return a list of all threads.")
9bc4701c 1220#define FUNC_NAME s_scm_all_threads
d823b11b 1221{
0b6843b1 1222 return scm_list_copy (all_threads);
d823b11b
MV
1223}
1224#undef FUNC_NAME
1225
1226scm_root_state *
1227scm_i_thread_root (SCM thread)
1228{
9bc4701c 1229 return ((scm_thread *) SCM_THREAD_DATA (thread))->root;
d823b11b
MV
1230}
1231
1232SCM_DEFINE (scm_thread_exited_p, "thread-exited?", 1, 0, 0,
1233 (SCM thread),
1234 "Return @code{#t} iff @var{thread} has exited.\n")
1235#define FUNC_NAME s_scm_thread_exited_p
1236{
1237 return SCM_BOOL (scm_c_thread_exited_p (thread));
1238}
1239#undef FUNC_NAME
1240
911782b7 1241int
d823b11b
MV
1242scm_c_thread_exited_p (SCM thread)
1243#define FUNC_NAME s_scm_thread_exited_p
5f05c406 1244{
d823b11b
MV
1245 scm_thread *t;
1246 SCM_VALIDATE_THREAD (1, thread);
1247 t = SCM_THREAD_DATA (thread);
1248 return t->exited;
5f05c406 1249}
d823b11b 1250#undef FUNC_NAME
5f05c406 1251
9bc4701c
MD
1252static scm_t_cond wake_up_cond;
1253int scm_i_thread_go_to_sleep;
9bc4701c
MD
1254static int gc_section_count = 0;
1255static int threads_initialized_p = 0;
1256
1257void
1258scm_i_thread_put_to_sleep ()
1259{
28d52ebb 1260 if (threads_initialized_p && !gc_section_count++)
9bc4701c 1261 {
c4c52ebe
MD
1262 SCM threads;
1263 scm_i_plugin_mutex_lock (&thread_admin_mutex);
1264 threads = all_threads;
9bc4701c
MD
1265 /* Signal all threads to go to sleep */
1266 scm_i_thread_go_to_sleep = 1;
1267 for (; !SCM_NULLP (threads); threads = SCM_CDR (threads))
1268 if (SCM_CAR (threads) != cur_thread)
1269 {
1270 scm_thread *t = SCM_THREAD_DATA (SCM_CAR (threads));
9bc4701c
MD
1271 scm_i_plugin_mutex_lock (&t->heap_mutex);
1272 }
9bc4701c
MD
1273 scm_i_thread_go_to_sleep = 0;
1274 }
1275}
1276
b0dc3d71
MD
1277void
1278scm_i_thread_invalidate_freelists ()
1279{
e29e0b09 1280 /* Don't need to lock thread_admin_mutex here since we are single threaded */
b0dc3d71
MD
1281 SCM threads = all_threads;
1282 for (; !SCM_NULLP (threads); threads = SCM_CDR (threads))
1283 if (SCM_CAR (threads) != cur_thread)
1284 {
1285 scm_thread *t = SCM_THREAD_DATA (SCM_CAR (threads));
1286 t->clear_freelists_p = 1;
1287 }
1288}
1289
9bc4701c
MD
1290void
1291scm_i_thread_wake_up ()
1292{
28d52ebb 1293 if (threads_initialized_p && !--gc_section_count)
9bc4701c 1294 {
c4c52ebe 1295 SCM threads;
c4c52ebe 1296 threads = all_threads;
9bc4701c
MD
1297 scm_i_plugin_cond_broadcast (&wake_up_cond);
1298 for (; !SCM_NULLP (threads); threads = SCM_CDR (threads))
1299 if (SCM_CAR (threads) != cur_thread)
1300 {
1301 scm_thread *t = SCM_THREAD_DATA (SCM_CAR (threads));
1302 scm_i_plugin_mutex_unlock (&t->heap_mutex);
1303 }
c4c52ebe 1304 scm_i_plugin_mutex_unlock (&thread_admin_mutex);
9bc4701c 1305 }
9bc4701c
MD
1306}
1307
1308void
1309scm_i_thread_sleep_for_gc ()
1310{
1311 scm_thread *t;
1312 t = suspend ();
9bc4701c 1313 scm_i_plugin_cond_wait (&wake_up_cond, &t->heap_mutex);
b0dc3d71 1314 resume (t);
9bc4701c
MD
1315}
1316
9bc4701c 1317scm_t_mutex scm_i_critical_section_mutex;
28d52ebb
MD
1318scm_t_rec_mutex scm_i_defer_mutex;
1319
1320#ifdef USE_PTHREAD_THREADS
1321#include "libguile/pthread-threads.c"
1322#endif
29717c89 1323#include "libguile/threads-plugin.c"
9bc4701c 1324
d823b11b 1325/*** Initialization */
7bfd3b9e 1326
9bc4701c
MD
1327void
1328scm_threads_prehistory ()
1329{
1330 scm_thread *t;
93cd4dcd
MD
1331#ifdef USE_PTHREAD_THREADS
1332 /* Must be called before any initialization of a mutex. */
1333 scm_init_pthread_threads ();
1334#endif
28d52ebb 1335 scm_i_plugin_mutex_init (&thread_admin_mutex, &scm_i_plugin_mutex);
9bc4701c 1336 scm_i_plugin_cond_init (&wake_up_cond, 0);
28d52ebb 1337 scm_i_plugin_mutex_init (&scm_i_critical_section_mutex, &scm_i_plugin_mutex);
9bc4701c
MD
1338 thread_count = 1;
1339 scm_i_plugin_key_create (&scm_i_thread_key, 0);
1340 scm_i_plugin_key_create (&scm_i_root_state_key, 0);
28d52ebb 1341 scm_i_plugin_rec_mutex_init (&scm_i_defer_mutex, &scm_i_plugin_rec_mutex);
9bc4701c
MD
1342 /* Allocate a fake thread object to be used during bootup. */
1343 t = malloc (sizeof (scm_thread));
1344 t->base = NULL;
1345 t->clear_freelists_p = 0;
0b6843b1 1346 scm_i_plugin_mutex_init (&t->heap_mutex, &scm_i_plugin_mutex);
9bc4701c 1347 scm_setspecific (scm_i_thread_key, t);
0b6843b1 1348 scm_i_enter_guile (t);
9bc4701c
MD
1349}
1350
d823b11b 1351scm_t_bits scm_tc16_thread;
28d52ebb 1352scm_t_bits scm_tc16_future;
d823b11b 1353scm_t_bits scm_tc16_mutex;
9bc4701c 1354scm_t_bits scm_tc16_fair_mutex;
d823b11b 1355scm_t_bits scm_tc16_condvar;
9bc4701c 1356scm_t_bits scm_tc16_fair_condvar;
7bfd3b9e 1357
7bfd3b9e 1358void
d823b11b 1359scm_init_threads (SCM_STACKITEM *base)
7bfd3b9e 1360{
9bc4701c 1361 SCM thread;
d823b11b 1362 scm_tc16_thread = scm_make_smob_type ("thread", sizeof (scm_thread));
9bc4701c
MD
1363 scm_tc16_mutex = scm_make_smob_type ("mutex", sizeof (scm_t_mutex));
1364 scm_tc16_fair_mutex = scm_make_smob_type ("fair-mutex",
1365 sizeof (fair_mutex));
d823b11b 1366 scm_tc16_condvar = scm_make_smob_type ("condition-variable",
9bc4701c
MD
1367 sizeof (scm_t_cond));
1368 scm_tc16_fair_condvar = scm_make_smob_type ("fair-condition-variable",
1369 sizeof (fair_cond));
d823b11b 1370
9bc4701c
MD
1371 thread = make_thread (SCM_BOOL_F);
1372 /* Replace initial fake thread with a real thread object */
1373 free (SCM_CURRENT_THREAD);
1374 scm_setspecific (scm_i_thread_key, SCM_THREAD_DATA (thread));
1375 scm_i_enter_guile (SCM_CURRENT_THREAD);
d823b11b 1376
d823b11b 1377 /* root is set later from init.c */
9bc4701c 1378 init_thread_creatant (thread, base);
d823b11b
MV
1379 thread_count = 1;
1380 scm_gc_register_root (&all_threads);
9bc4701c 1381 all_threads = scm_cons (thread, SCM_EOL);
d823b11b
MV
1382
1383 scm_set_smob_mark (scm_tc16_thread, thread_mark);
1384 scm_set_smob_print (scm_tc16_thread, thread_print);
1385 scm_set_smob_free (scm_tc16_thread, thread_free);
1386
9bc4701c
MD
1387 scm_set_smob_mark (scm_tc16_fair_mutex, fair_mutex_mark);
1388
1389 scm_set_smob_mark (scm_tc16_fair_condvar, fair_cond_mark);
d823b11b 1390
28d52ebb
MD
1391 scm_tc16_future = scm_make_smob_type ("future", 0);
1392 scm_set_smob_mark (scm_tc16_future, scm_markcdr);
1393 scm_set_smob_free (scm_tc16_future, future_free);
1394 scm_set_smob_print (scm_tc16_future, future_print);
1395
9bc4701c 1396 threads_initialized_p = 1;
7bfd3b9e 1397}
89e00824 1398
5f05c406
MV
1399void
1400scm_init_thread_procs ()
1401{
28d52ebb
MD
1402 scm_loc_sys_thread_handler
1403 = SCM_VARIABLE_LOC (scm_c_define ("%thread-handler", SCM_BOOL_F));
5f05c406
MV
1404#include "libguile/threads.x"
1405}
1406
d823b11b
MV
1407/* XXX */
1408
1409void
1410scm_init_iselect ()
1411{
1412}
1413
89e00824
ML
1414/*
1415 Local Variables:
1416 c-file-style: "gnu"
1417 End:
1418*/