* error.c (dump_function_name): Don't crash if given a friend
[official-gcc.git] / libjava / posix-threads.cc
blob19c7241cf885c4b4c97598c41a6713101aaaf257
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 <gcconfig.h>
22 #include <gc.h>
24 #endif /* HAVE_BOEHM_GC */
26 #include <stdlib.h>
27 #include <time.h>
28 #include <signal.h>
29 #include <errno.h>
31 #include <gcj/cni.h>
32 #include <jvm.h>
33 #include <java/lang/Thread.h>
34 #include <java/lang/System.h>
36 // This is used to implement thread startup.
37 struct starter
39 _Jv_ThreadStartFunc *method;
40 java::lang::Thread *object;
41 _Jv_Thread_t *data;
44 // This is the key used to map from the POSIX thread value back to the
45 // Java object representing the thread. The key is global to all
46 // threads, so it is ok to make it a global here.
47 pthread_key_t _Jv_ThreadKey;
49 // This is the key used to map from the POSIX thread value back to the
50 // _Jv_Thread_t* representing the thread.
51 pthread_key_t _Jv_ThreadDataKey;
53 // We keep a count of all non-daemon threads which are running. When
54 // this reaches zero, _Jv_ThreadWait returns.
55 static pthread_mutex_t daemon_mutex;
56 static pthread_cond_t daemon_cond;
57 static int non_daemon_count;
59 // The signal to use when interrupting a thread.
60 #ifdef LINUX_THREADS
61 // LinuxThreads usurps both SIGUSR1 and SIGUSR2.
62 # define INTR SIGHUP
63 #else /* LINUX_THREADS */
64 # define INTR SIGUSR2
65 #endif /* LINUX_THREADS */
68 // These are the flags that can appear in _Jv_Thread_t.
71 // Thread started.
72 #define FLAG_START 0x01
73 // Thread is daemon.
74 #define FLAG_DAEMON 0x02
75 // Thread was interrupted by _Jv_ThreadInterrupt.
76 #define FLAG_INTERRUPTED 0x04
80 int
81 _Jv_CondWait (_Jv_ConditionVariable_t *cv, _Jv_Mutex_t *mu,
82 jlong millis, jint nanos)
84 if (_Jv_PthreadCheckMonitor (mu))
85 return 1;
87 int r;
88 pthread_mutex_t *pmu = _Jv_PthreadGetMutex (mu);
89 struct timespec ts;
90 jlong m, m2, startTime;
91 bool done_sleeping = false;
93 if (millis == 0 && nanos == 0)
94 r = pthread_cond_wait (cv, pmu);
95 else
97 startTime = java::lang::System::currentTimeMillis();
98 m = millis + startTime;
102 ts.tv_sec = m / 1000;
103 ts.tv_nsec = ((m % 1000) * 1000000) + nanos;
105 r = pthread_cond_timedwait (cv, pmu, &ts);
107 if (r == EINTR)
109 /* We were interrupted by a signal. Either this is
110 because we were interrupted intentionally (i.e. by
111 Thread.interrupt()) or by the GC if it is
112 signal-based. */
113 _Jv_Thread_t *current = _Jv_ThreadCurrentData();
114 if (current->flags & FLAG_INTERRUPTED)
116 current->flags &= ~(FLAG_INTERRUPTED);
117 done_sleeping = true;
119 else
121 /* We were woken up by the GC or another signal. */
122 m2 = java::lang::System::currentTimeMillis ();
123 if (m2 >= m)
125 r = 0;
126 done_sleeping = true;
130 else if (r == ETIMEDOUT)
132 /* A timeout is a normal result. */
133 r = 0;
134 done_sleeping = true;
136 else
137 done_sleeping = true;
139 while (! done_sleeping);
142 return r != 0;
145 #ifndef RECURSIVE_MUTEX_IS_DEFAULT
147 void
148 _Jv_MutexInit (_Jv_Mutex_t *mu)
150 #ifdef HAVE_RECURSIVE_MUTEX
151 pthread_mutexattr_t *val = NULL;
153 #if defined (HAVE_PTHREAD_MUTEXATTR_SETTYPE)
154 pthread_mutexattr_t attr;
156 // If this is slow, then allocate it statically and only initialize
157 // it once.
158 pthread_mutexattr_init (&attr);
159 pthread_mutexattr_settype (&attr, PTHREAD_MUTEX_RECURSIVE);
160 val = &attr;
161 #elif defined (HAVE_PTHREAD_MUTEXATTR_SETKIND_NP)
162 pthread_mutexattr_t attr;
163 pthread_mutexattr_init (&attr);
164 pthread_mutexattr_setkind_np (&attr, PTHREAD_MUTEX_RECURSIVE_NP);
165 val = &attr;
166 #endif
168 pthread_mutex_init (mu, val);
170 #if defined (HAVE_PTHREAD_MUTEXATTR_SETTYPE) || defined (HAVE_PTHREAD_MUTEXATTR_SETKIND_NP)
171 pthread_mutexattr_destroy (&attr);
172 #endif
174 #else /* HAVE_RECURSIVE_MUTEX */
176 // No recursive mutex, so simulate one.
177 pthread_mutex_init (&mu->mutex, NULL);
178 pthread_mutex_init (&mu->mutex2, NULL);
179 pthread_cond_init (&mu->cond, 0);
180 mu->count = 0;
182 #endif /* HAVE_RECURSIVE_MUTEX */
185 #endif /* not RECURSIVE_MUTEX_IS_DEFAULT */
187 #if ! defined (LINUX_THREADS) && ! defined (HAVE_RECURSIVE_MUTEX)
189 void
190 _Jv_MutexDestroy (_Jv_Mutex_t *mu)
192 pthread_mutex_destroy (&mu->mutex);
193 pthread_mutex_destroy (&mu->mutex2);
194 pthread_cond_destroy (&mu->cond);
198 _Jv_MutexLock (_Jv_Mutex_t *mu)
200 if (pthread_mutex_lock (&mu->mutex))
201 return -1;
202 while (1)
204 if (mu->count == 0)
206 // Grab the lock.
207 mu->thread = pthread_self ();
208 mu->count = 1;
209 pthread_mutex_lock (&mu->mutex2);
210 break;
212 else if (pthread_self () == mu->thread)
214 // Already have the lock.
215 mu->count += 1;
216 break;
218 else
220 // Try to acquire the lock.
221 pthread_cond_wait (&mu->cond, &mu->mutex);
224 pthread_mutex_unlock (&mu->mutex);
225 return 0;
229 _Jv_MutexUnlock (_Jv_Mutex_t *mu)
231 if (pthread_mutex_lock (&mu->mutex))
232 return -1;
233 int r = 0;
234 if (mu->count == 0 || pthread_self () != mu->thread)
235 r = -1;
236 else
238 mu->count -= 1;
239 if (! mu->count)
241 pthread_mutex_unlock (&mu->mutex2);
242 pthread_cond_signal (&mu->cond);
245 pthread_mutex_unlock (&mu->mutex);
246 return r;
249 #endif /* not LINUX_THREADS and not HAVE_RECURSIVE_MUTEX */
251 static void
252 handle_intr (int)
254 // Do nothing.
257 void
258 _Jv_InitThreads (void)
260 pthread_key_create (&_Jv_ThreadKey, NULL);
261 pthread_key_create (&_Jv_ThreadDataKey, NULL);
262 pthread_mutex_init (&daemon_mutex, NULL);
263 pthread_cond_init (&daemon_cond, 0);
264 non_daemon_count = 0;
266 // Arrange for the interrupt signal to interrupt system calls.
267 struct sigaction act;
268 act.sa_handler = handle_intr;
269 sigemptyset (&act.sa_mask);
270 act.sa_flags = 0;
271 sigaction (INTR, &act, NULL);
273 // Arrange for SIGINT to be blocked to all threads. It is only
274 // deliverable to the master thread.
275 sigset_t mask;
276 sigemptyset (&mask);
277 sigaddset (&mask, SIGINT);
278 pthread_sigmask (SIG_BLOCK, &mask, NULL);
281 void
282 _Jv_ThreadInitData (_Jv_Thread_t **data, java::lang::Thread *)
284 _Jv_Thread_t *info = new _Jv_Thread_t;
286 info->flags = 0;
288 // FIXME register a finalizer for INFO here.
289 // FIXME also must mark INFO somehow.
291 *data = info;
294 void
295 _Jv_ThreadSetPriority (_Jv_Thread_t *data, jint prio)
297 if (data->flags & FLAG_START)
299 struct sched_param param;
301 param.sched_priority = prio;
302 pthread_setschedparam (data->thread, SCHED_RR, &param);
306 // This function is called when a thread is started. We don't arrange
307 // to call the `run' method directly, because this function must
308 // return a value.
309 static void *
310 really_start (void *x)
312 struct starter *info = (struct starter *) x;
314 pthread_setspecific (_Jv_ThreadKey, info->object);
315 pthread_setspecific (_Jv_ThreadDataKey, info->data);
316 info->method (info->object);
318 if (! (info->data->flags & FLAG_DAEMON))
320 pthread_mutex_lock (&daemon_mutex);
321 --non_daemon_count;
322 if (! non_daemon_count)
323 pthread_cond_signal (&daemon_cond);
324 pthread_mutex_unlock (&daemon_mutex);
327 return NULL;
330 void
331 _Jv_ThreadStart (java::lang::Thread *thread, _Jv_Thread_t *data,
332 _Jv_ThreadStartFunc *meth)
334 struct sched_param param;
335 pthread_attr_t attr;
336 struct starter *info;
338 if (data->flags & FLAG_START)
339 return;
340 data->flags |= FLAG_START;
342 param.sched_priority = thread->getPriority();
344 pthread_attr_init (&attr);
345 pthread_attr_setschedparam (&attr, &param);
347 // FIXME: handle marking the info object for GC.
348 info = (struct starter *) _Jv_AllocBytes (sizeof (struct starter));
349 info->method = meth;
350 info->object = thread;
351 info->data = data;
353 if (! thread->isDaemon())
355 pthread_mutex_lock (&daemon_mutex);
356 ++non_daemon_count;
357 pthread_mutex_unlock (&daemon_mutex);
359 else
360 data->flags |= FLAG_DAEMON;
361 pthread_create (&data->thread, &attr, really_start, (void *) info);
363 pthread_attr_destroy (&attr);
366 void
367 _Jv_ThreadWait (void)
369 // Arrange for SIGINT to be delivered to the master thread.
370 sigset_t mask;
371 sigemptyset (&mask);
372 sigaddset (&mask, SIGINT);
373 pthread_sigmask (SIG_UNBLOCK, &mask, NULL);
375 pthread_mutex_lock (&daemon_mutex);
376 if (non_daemon_count)
377 pthread_cond_wait (&daemon_cond, &daemon_mutex);
378 pthread_mutex_unlock (&daemon_mutex);
381 void
382 _Jv_ThreadInterrupt (_Jv_Thread_t *data)
384 data->flags |= FLAG_INTERRUPTED;
385 pthread_kill (data->thread, INTR);