* gcc.c-torture/execute/990604-1.c: New test.
[official-gcc.git] / libjava / posix-threads.cc
blob436588aee320e358252ebe2086e3e1c88b448d2d
1 // posix-threads.cc - interface between libjava and POSIX threads.
3 /* Copyright (C) 1998, 1999 Cygnus Solutions
5 This file is part of libgcj.
7 This software is copyrighted work licensed under the terms of the
8 Libgcj License. Please consult the file "LIBGCJ_LICENSE" for
9 details. */
11 // TO DO:
12 // * Document signal handling limitations
14 #include <config.h>
16 // If we're using the Boehm GC, then we need to override some of the
17 // thread primitives. This is fairly gross.
18 #ifdef HAVE_BOEHM_GC
19 extern "C"
21 #include <boehm-config.h>
22 #include <gc.h>
24 #endif /* HAVE_BOEHM_GC */
26 #include <stdlib.h>
27 #include <time.h>
28 #include <signal.h>
30 #include <cni.h>
31 #include <jvm.h>
32 #include <java/lang/Thread.h>
33 #include <java/lang/System.h>
35 // This is used to implement thread startup.
36 struct starter
38 _Jv_ThreadStartFunc *method;
39 java::lang::Thread *object;
40 _Jv_Thread_t *data;
43 // This is the key used to map from the POSIX thread value back to the
44 // Java object representing the thread. The key is global to all
45 // threads, so it is ok to make it a global here.
46 pthread_key_t _Jv_ThreadKey;
48 // We keep a count of all non-daemon threads which are running. When
49 // this reaches zero, _Jv_ThreadWait returns.
50 static pthread_mutex_t daemon_mutex;
51 static pthread_cond_t daemon_cond;
52 static int non_daemon_count;
54 // The signal to use when interrupting a thread.
55 #ifdef LINUX_THREADS
56 // LinuxThreads usurps both SIGUSR1 and SIGUSR2.
57 # define INTR SIGHUP
58 #else /* LINUX_THREADS */
59 # define INTR SIGUSR2
60 #endif /* LINUX_THREADS */
63 // These are the flags that can appear in _Jv_Thread_t.
66 // Thread started.
67 #define FLAG_START 0x01
68 // Thread is daemon.
69 #define FLAG_DAEMON 0x02
73 int
74 _Jv_CondWait (_Jv_ConditionVariable_t *cv, _Jv_Mutex_t *mu,
75 jlong millis, jint nanos)
77 int r;
78 pthread_mutex_t *pmu;
79 #ifdef HAVE_RECURSIVE_MUTEX
80 pmu = mu;
81 #else
82 pmu = &mu->mutex2;
83 #endif
84 if (millis == 0 && nanos == 0)
85 r = pthread_cond_wait (cv, pmu);
86 else
88 struct timespec ts;
89 unsigned long m = millis + java::lang::System::currentTimeMillis ();
91 ts.tv_sec = m / 1000;
92 ts.tv_nsec = (m % 1000) * 1000 * 1000 + nanos;
94 r = pthread_cond_timedwait (cv, pmu, &ts);
96 return r;
99 #ifndef RECURSIVE_MUTEX_IS_DEFAULT
101 void
102 _Jv_MutexInit (_Jv_Mutex_t *mu)
104 #ifdef HAVE_RECURSIVE_MUTEX
105 pthread_mutexattr_t *val = NULL;
107 #if defined (HAVE_PTHREAD_MUTEXATTR_SETTYPE)
108 pthread_mutexattr_t attr;
110 // If this is slow, then allocate it statically and only initialize
111 // it once.
112 pthread_mutexattr_init (&attr);
113 pthread_mutexattr_settype (&attr, PTHREAD_MUTEX_RECURSIVE);
114 val = &attr;
115 #elif defined (HAVE_PTHREAD_MUTEXATTR_SETKIND_NP)
116 pthread_mutexattr_t attr;
117 pthread_mutexattr_init (&attr);
118 pthread_mutexattr_setkind_np (&attr, PTHREAD_MUTEX_RECURSIVE_NP);
119 val = &attr;
120 #endif
122 pthread_mutex_init (mu, val);
124 #if defined (HAVE_PTHREAD_MUTEXATTR_SETTYPE) || defined (HAVE_PTHREAD_MUTEXATTR_SETKIND_NP)
125 pthread_mutexattr_destroy (&attr);
126 #endif
128 #else /* HAVE_RECURSIVE_MUTEX */
130 // No recursive mutex, so simulate one.
131 pthread_mutex_init (&mu->mutex, NULL);
132 pthread_mutex_init (&mu->mutex2, NULL);
133 pthread_cond_init (&mu->cond, 0);
134 mu->count = 0;
136 #endif /* HAVE_RECURSIVE_MUTEX */
139 #endif /* not RECURSIVE_MUTEX_IS_DEFAULT */
141 #if ! defined (LINUX_THREADS) && ! defined (HAVE_RECURSIVE_MUTEX)
143 void
144 _Jv_MutexDestroy (_Jv_Mutex_t *mu)
146 pthread_mutex_destroy (&mu->mutex);
147 pthread_mutex_destroy (&mu->mutex2);
148 pthread_cond_destroy (&mu->cond);
152 _Jv_MutexLock (_Jv_Mutex_t *mu)
154 if (pthread_mutex_lock (&mu->mutex))
155 return -1;
156 while (1)
158 if (mu->count == 0)
160 // Grab the lock.
161 mu->thread = pthread_self ();
162 mu->count = 1;
163 pthread_mutex_lock (&mu->mutex2);
164 break;
166 else if (pthread_self () == mu->thread)
168 // Already have the lock.
169 mu->count += 1;
170 break;
172 else
174 // Try to acquire the lock.
175 pthread_cond_wait (&mu->cond, &mu->mutex);
178 pthread_mutex_unlock (&mu->mutex);
179 return 0;
183 _Jv_MutexUnlock (_Jv_Mutex_t *mu)
185 if (pthread_mutex_lock (&mu->mutex))
186 return -1;
187 int r = 0;
188 if (mu->count == 0 || pthread_self () != mu->thread)
189 r = -1;
190 else
192 mu->count -= 1;
193 if (! mu->count)
195 pthread_mutex_unlock (&mu->mutex2);
196 pthread_cond_signal (&mu->cond);
199 pthread_mutex_unlock (&mu->mutex);
200 return r;
203 #endif /* not LINUX_THREADS and not HAVE_RECURSIVE_MUTEX */
205 static void
206 handle_intr (int)
208 // Do nothing.
211 void
212 _Jv_InitThreads (void)
214 pthread_key_create (&_Jv_ThreadKey, NULL);
215 pthread_mutex_init (&daemon_mutex, NULL);
216 pthread_cond_init (&daemon_cond, 0);
217 non_daemon_count = 0;
219 // Arrange for the interrupt signal to interrupt system calls.
220 struct sigaction act;
221 act.sa_handler = handle_intr;
222 sigemptyset (&act.sa_mask);
223 act.sa_flags = 0;
224 sigaction (INTR, &act, NULL);
226 // Arrange for SIGINT to be blocked to all threads. It is only
227 // deliverable to the master thread.
228 sigset_t mask;
229 sigemptyset (&mask);
230 sigaddset (&mask, SIGINT);
231 pthread_sigmask (SIG_BLOCK, &mask, NULL);
234 void
235 _Jv_ThreadInitData (_Jv_Thread_t **data, java::lang::Thread *)
237 _Jv_Thread_t *info = new _Jv_Thread_t;
239 info->flags = 0;
240 info->exception = NULL;
242 // FIXME register a finalizer for INFO here.
243 // FIXME also must mark INFO somehow.
245 *data = info;
248 void
249 _Jv_ThreadSetPriority (_Jv_Thread_t *data, jint prio)
251 if (data->flags & FLAG_START)
253 struct sched_param param;
255 param.sched_priority = prio;
256 pthread_setschedparam (data->thread, SCHED_RR, &param);
261 // This is called as a cleanup handler when a thread is exiting. We
262 // use it to throw the requested exception. It's entirely possible
263 // that this approach is doomed to failure, in which case we'll need
264 // to adopt some alternate. For instance, use a signal to implement
265 // _Jv_ThreadCancel.
266 static void
267 throw_cleanup (void *data)
269 _Jv_Thread_t *td = (_Jv_Thread_t *) data;
270 _Jv_Throw ((java::lang::Throwable *) td->exception);
273 void
274 _Jv_ThreadCancel (_Jv_Thread_t *data, void *error)
276 data->exception = error;
277 pthread_cancel (data->thread);
280 // This function is called when a thread is started. We don't arrange
281 // to call the `run' method directly, because this function must
282 // return a value.
283 static void *
284 really_start (void *x)
286 struct starter *info = (struct starter *) x;
288 pthread_cleanup_push (throw_cleanup, info->data);
289 pthread_setspecific (_Jv_ThreadKey, info->object);
290 info->method (info->object);
291 pthread_cleanup_pop (0);
293 if (! (info->data->flags & FLAG_DAEMON))
295 pthread_mutex_lock (&daemon_mutex);
296 --non_daemon_count;
297 if (! non_daemon_count)
298 pthread_cond_signal (&daemon_cond);
299 pthread_mutex_unlock (&daemon_mutex);
302 return NULL;
305 void
306 _Jv_ThreadStart (java::lang::Thread *thread, _Jv_Thread_t *data,
307 _Jv_ThreadStartFunc *meth)
309 struct sched_param param;
310 pthread_attr_t attr;
311 struct starter *info;
313 if (data->flags & FLAG_START)
314 return;
315 data->flags |= FLAG_START;
317 param.sched_priority = thread->getPriority();
319 pthread_attr_init (&attr);
320 pthread_attr_setschedparam (&attr, &param);
322 // FIXME: handle marking the info object for GC.
323 info = (struct starter *) _Jv_AllocBytes (sizeof (struct starter));
324 info->method = meth;
325 info->object = thread;
326 info->data = data;
328 if (! thread->isDaemon())
330 pthread_mutex_lock (&daemon_mutex);
331 ++non_daemon_count;
332 pthread_mutex_unlock (&daemon_mutex);
334 else
335 data->flags |= FLAG_DAEMON;
336 pthread_create (&data->thread, &attr, really_start, (void *) info);
338 pthread_attr_destroy (&attr);
341 void
342 _Jv_ThreadWait (void)
344 // Arrange for SIGINT to be delivered to the master thread.
345 sigset_t mask;
346 sigemptyset (&mask);
347 sigaddset (&mask, SIGINT);
348 pthread_sigmask (SIG_UNBLOCK, &mask, NULL);
350 pthread_mutex_lock (&daemon_mutex);
351 if (non_daemon_count)
352 pthread_cond_wait (&daemon_cond, &daemon_mutex);
353 pthread_mutex_unlock (&daemon_mutex);
356 void
357 _Jv_ThreadInterrupt (_Jv_Thread_t *data)
359 pthread_kill (data->thread, INTR);