2 * Copyright (c) 1994 by Xerox Corporation. All rights reserved.
4 * THIS MATERIAL IS PROVIDED AS IS, WITH ABSOLUTELY NO WARRANTY EXPRESSED
5 * OR IMPLIED. ANY USE IS AT YOUR OWN RISK.
7 * Permission is hereby granted to use or copy this program
8 * for any purpose, provided the above notices are retained on all copies.
9 * Permission to modify the code and to distribute modified code is granted,
10 * provided the above notices are retained, and a notice that the code was
11 * modified is included with the above copyright notice.
14 * Support code for Solaris threads. Provides functionality we wish Sun
15 * had provided. Relies on some information we probably shouldn't rely on.
16 * Modified Peter C. for Solaris Posix Threads.
18 /* Boehm, September 14, 1994 4:44 pm PDT */
21 # if defined(_SOLARIS_PTHREADS)
27 # include <sys/types.h>
28 # include <sys/mman.h>
29 # include <sys/time.h>
30 # include <sys/resource.h>
31 # include <sys/stat.h>
32 # include <sys/syscall.h>
33 # include <sys/procfs.h>
36 # define _CLASSIC_XOPEN_TYPES
39 # include "solaris_threads.h"
45 pthread_cond_t GC_prom_join_cv; /* Broadcast when any thread terminates */
46 pthread_cond_t GC_create_cv; /* Signalled when a new undetached */
49 extern bool GC_multithreaded;
51 /* We use the allocation lock to protect thread-related data structures. */
53 /* We stop the world using /proc primitives. This makes some */
54 /* minimal assumptions about the threads implementation. */
55 /* We don't play by the rules, since the rules make this */
56 /* impossible (as of Solaris 2.3). Also note that as of */
57 /* Solaris 2.3 the various thread and lwp suspension */
58 /* primitives failed to stop threads by the time the request */
63 int GC_pthread_join(pthread_t wait_for, void **status)
65 return GC_thr_join((thread_t)wait_for, NULL, status);
70 GC_pthread_create(pthread_t *new_thread,
71 const pthread_attr_t *attr_in,
72 void * (*thread_execp)(void *), void *arg)
76 pthread_t my_new_thread;
83 struct sched_param schedparam;
85 (void)pthread_attr_getstacksize(attr_in, &stack_size);
86 (void)pthread_attr_getstackaddr(attr_in, &stack);
87 (void)pthread_attr_init(&attr);
90 if (!GC_thr_initialized) {
97 stack_size = GC_min_stack_sz;
99 stack_size += thr_min_stack();
101 stack = (void *)GC_stack_alloc(&stack_size);
109 my_flags |= CLIENT_OWNS_STACK;
111 (void)pthread_attr_setstacksize(&attr, stack_size);
112 (void)pthread_attr_setstackaddr(&attr, stack);
113 (void)pthread_attr_getscope(attr_in, &n);
114 (void)pthread_attr_setscope(&attr, n);
115 (void)pthread_attr_getschedparam(attr_in, &schedparam);
116 (void)pthread_attr_setschedparam(&attr, &schedparam);
117 (void)pthread_attr_getschedpolicy(attr_in, &n);
118 (void)pthread_attr_setschedpolicy(&attr, n);
119 (void)pthread_attr_getinheritsched(attr_in, &n);
120 (void)pthread_attr_setinheritsched(&attr, n);
122 (void)pthread_attr_getdetachstate(attr_in, &flag);
123 if (flag == PTHREAD_CREATE_DETACHED) {
124 my_flags |= DETACHED;
126 (void)pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_JOINABLE);
128 * thr_create can call malloc(), which if redirected will
129 * attempt to acquire the allocation lock.
130 * Unlock here to prevent deadlock.
140 pthread_create(&my_new_thread, &attr, thread_execp, arg);
147 t = GC_new_thread(my_new_thread);
148 t -> flags = my_flags;
149 if (!(my_flags & DETACHED)) cond_init(&(t->join_cv), USYNC_THREAD, 0);
151 t -> stack_size = stack_size;
152 if (new_thread != 0) *new_thread = my_new_thread;
153 pthread_cond_signal(&GC_create_cv);
155 if (!(my_flags & CLIENT_OWNS_STACK)) {
156 GC_stack_free(stack, stack_size);
161 pthread_attr_destroy(&attr);
168 int GC_no_sunOS_pthreads;
171 # endif /* SOLARIS_THREADS */