* enc/depend: transcode table generation depends on
[ruby-svn.git] / thread_pthread.c
blob029ad43002750bd2e9cfb643e74f793324f42a19
1 /* -*-c-*- */
2 /**********************************************************************
4 thread_pthread.c -
6 $Author$
8 Copyright (C) 2004-2007 Koichi Sasada
10 **********************************************************************/
12 #ifdef THREAD_SYSTEM_DEPENDENT_IMPLEMENTATION
14 #include "gc.h"
16 #ifdef HAVE_SYS_RESOURCE_H
17 #include <sys/resource.h>
18 #endif
20 static void native_mutex_lock(pthread_mutex_t *lock);
21 static void native_mutex_unlock(pthread_mutex_t *lock);
22 static int native_mutex_trylock(pthread_mutex_t *lock);
23 static void native_mutex_initialize(pthread_mutex_t *lock);
24 static void native_mutex_destroy(pthread_mutex_t *lock);
26 static void native_cond_signal(pthread_cond_t *cond);
27 static void native_cond_broadcast(pthread_cond_t *cond);
28 static void native_cond_wait(pthread_cond_t *cond, pthread_mutex_t *mutex);
29 static void native_cond_initialize(pthread_cond_t *cond);
30 static void native_cond_destroy(pthread_cond_t *cond);
32 static void
33 native_mutex_lock(pthread_mutex_t *lock)
35 int r;
36 if ((r = pthread_mutex_lock(lock)) != 0) {
37 rb_bug("pthread_mutex_lock: %d", r);
41 static void
42 native_mutex_unlock(pthread_mutex_t *lock)
44 int r;
45 if ((r = pthread_mutex_unlock(lock)) != 0) {
46 rb_bug("native_mutex_unlock return non-zero: %d", r);
50 static inline int
51 native_mutex_trylock(pthread_mutex_t *lock)
53 int r;
54 if ((r = pthread_mutex_trylock(lock)) != 0) {
55 if (r == EBUSY) {
56 return EBUSY;
58 else {
59 rb_bug("native_mutex_trylock return non-zero: %d", r);
62 return 0;
65 static void
66 native_mutex_initialize(pthread_mutex_t *lock)
68 int r = pthread_mutex_init(lock, 0);
69 if (r != 0) {
70 rb_bug("native_mutex_initialize return non-zero: %d", r);
74 static void
75 native_mutex_destroy(pthread_mutex_t *lock)
77 int r = pthread_mutex_destroy(lock);
78 if (r != 0) {
79 rb_bug("native_mutex_destroy return non-zero: %d", r);
83 static void
84 native_cond_initialize(pthread_cond_t *cond)
86 int r = pthread_cond_init(cond, 0);
87 if (r != 0) {
88 rb_bug("native_cond_initialize return non-zero: %d", r);
92 static void
93 native_cond_destroy(pthread_cond_t *cond)
95 int r = pthread_cond_destroy(cond);
96 if (r != 0) {
97 rb_bug("native_cond_destroy return non-zero: %d", r);
101 static void
102 native_cond_signal(pthread_cond_t *cond)
104 pthread_cond_signal(cond);
107 static void
108 native_cond_broadcast(pthread_cond_t *cond)
110 pthread_cond_broadcast(cond);
113 static void
114 native_cond_wait(pthread_cond_t *cond, pthread_mutex_t *mutex)
116 pthread_cond_wait(cond, mutex);
120 #define native_cleanup_push pthread_cleanup_push
121 #define native_cleanup_pop pthread_cleanup_pop
122 #define native_thread_yield() sched_yield()
124 #ifndef __CYGWIN__
125 static void add_signal_thread_list(rb_thread_t *th);
126 #endif
127 static void remove_signal_thread_list(rb_thread_t *th);
129 static rb_thread_lock_t signal_thread_list_lock;
131 static pthread_key_t ruby_native_thread_key;
133 static void
134 null_func(int i)
136 /* null */
139 static rb_thread_t *
140 ruby_thread_from_native(void)
142 return pthread_getspecific(ruby_native_thread_key);
145 static int
146 ruby_thread_set_native(rb_thread_t *th)
148 return pthread_setspecific(ruby_native_thread_key, th) == 0;
151 static void
152 Init_native_thread(void)
154 rb_thread_t *th = GET_THREAD();
156 pthread_key_create(&ruby_native_thread_key, NULL);
157 th->thread_id = pthread_self();
158 native_cond_initialize(&th->native_thread_data.sleep_cond);
159 ruby_thread_set_native(th);
160 native_mutex_initialize(&signal_thread_list_lock);
161 posix_signal(SIGVTALRM, null_func);
164 static void
165 native_thread_destroy(rb_thread_t *th)
167 pthread_mutex_destroy(&th->interrupt_lock);
168 pthread_cond_destroy(&th->native_thread_data.sleep_cond);
171 #define USE_THREAD_CACHE 0
173 static struct {
174 rb_thread_id_t id;
175 size_t stack_maxsize;
176 VALUE *stack_start;
177 #ifdef __ia64
178 VALUE *register_stack_start;
179 #endif
180 } native_main_thread;
182 #ifdef STACK_END_ADDRESS
183 extern void *STACK_END_ADDRESS;
184 #endif
186 #undef ruby_init_stack
187 void
188 ruby_init_stack(VALUE *addr
189 #ifdef __ia64
190 , void *bsp
191 #endif
194 native_main_thread.id = pthread_self();
195 #ifdef STACK_END_ADDRESS
196 native_main_thread.stack_start = STACK_END_ADDRESS;
197 #else
198 if (!native_main_thread.stack_start ||
199 STACK_UPPER(&addr,
200 native_main_thread.stack_start > addr,
201 native_main_thread.stack_start < addr)) {
202 native_main_thread.stack_start = addr;
204 #endif
205 #ifdef __ia64
206 if (!native_main_thread.register_stack_start ||
207 (VALUE*)bsp < native_main_thread.register_stack_start) {
208 native_main_thread.register_stack_start = (VALUE*)bsp;
210 #endif
211 #ifdef HAVE_GETRLIMIT
213 struct rlimit rlim;
215 if (getrlimit(RLIMIT_STACK, &rlim) == 0) {
216 unsigned int space = rlim.rlim_cur/5;
218 if (space > 1024*1024) space = 1024*1024;
219 native_main_thread.stack_maxsize = rlim.rlim_cur - space;
222 #endif
225 #define CHECK_ERR(expr) \
226 {int err = (expr); if (err) {rb_bug("err: %d - %s", err, #expr);}}
228 static int
229 native_thread_init_stack(rb_thread_t *th)
231 rb_thread_id_t curr = pthread_self();
233 if (pthread_equal(curr, native_main_thread.id)) {
234 th->machine_stack_start = native_main_thread.stack_start;
235 th->machine_stack_maxsize = native_main_thread.stack_maxsize;
237 else {
238 #ifdef HAVE_PTHREAD_GETATTR_NP
239 pthread_attr_t attr;
240 void *start;
241 CHECK_ERR(pthread_getattr_np(curr, &attr));
242 # if defined HAVE_PTHREAD_ATTR_GETSTACK
243 CHECK_ERR(pthread_attr_getstack(&attr, &start, &th->machine_stack_maxsize));
244 # elif defined HAVE_PTHREAD_ATTR_GETSTACKSIZE && defined HAVE_PTHREAD_ATTR_GETSTACKADDR
245 CHECK_ERR(pthread_attr_getstackaddr(&attr, &start));
246 CHECK_ERR(pthread_attr_getstacksize(&attr, &th->machine_stack_maxsize));
247 # endif
248 th->machine_stack_start = start;
249 #else
250 rb_raise(rb_eNotImpError, "ruby engine can initialize only in the main thread");
251 #endif
253 #ifdef __ia64
254 th->machine_register_stack_start = native_main_thread.register_stack_start;
255 th->machine_stack_maxsize /= 2;
256 th->machine_register_stack_maxsize = th->machine_stack_maxsize;
257 #endif
258 return 0;
261 static void *
262 thread_start_func_1(void *th_ptr)
264 #if USE_THREAD_CACHE
265 thread_start:
266 #endif
268 rb_thread_t *th = th_ptr;
269 VALUE stack_start;
271 /* run */
272 thread_start_func_2(th, &stack_start, rb_ia64_bsp());
274 #if USE_THREAD_CACHE
275 if (1) {
276 /* cache thread */
277 rb_thread_t *th;
278 static rb_thread_t *register_cached_thread_and_wait(void);
279 if ((th = register_cached_thread_and_wait()) != 0) {
280 th_ptr = (void *)th;
281 th->thread_id = pthread_self();
282 goto thread_start;
285 #endif
286 return 0;
289 void rb_thread_create_control_thread(void);
291 struct cached_thread_entry {
292 volatile rb_thread_t **th_area;
293 pthread_cond_t *cond;
294 struct cached_thread_entry *next;
298 #if USE_THREAD_CACHE
299 static pthread_mutex_t thread_cache_lock = PTHREAD_MUTEX_INITIALIZER;
300 struct cached_thread_entry *cached_thread_root;
302 static rb_thread_t *
303 register_cached_thread_and_wait(void)
305 pthread_cond_t cond = PTHREAD_COND_INITIALIZER;
306 volatile rb_thread_t *th_area = 0;
307 struct cached_thread_entry *entry =
308 (struct cached_thread_entry *)malloc(sizeof(struct cached_thread_entry));
310 struct timeval tv;
311 struct timespec ts;
312 gettimeofday(&tv, 0);
313 ts.tv_sec = tv.tv_sec + 60;
314 ts.tv_nsec = tv.tv_usec * 1000;
316 pthread_mutex_lock(&thread_cache_lock);
318 entry->th_area = &th_area;
319 entry->cond = &cond;
320 entry->next = cached_thread_root;
321 cached_thread_root = entry;
323 pthread_cond_timedwait(&cond, &thread_cache_lock, &ts);
326 struct cached_thread_entry *e = cached_thread_root;
327 struct cached_thread_entry *prev = cached_thread_root;
329 while (e) {
330 if (e == entry) {
331 if (prev == cached_thread_root) {
332 cached_thread_root = e->next;
334 else {
335 prev->next = e->next;
337 break;
339 prev = e;
340 e = e->next;
344 free(entry); /* ok */
345 pthread_cond_destroy(&cond);
347 pthread_mutex_unlock(&thread_cache_lock);
349 return (rb_thread_t *)th_area;
351 #endif
353 static int
354 use_cached_thread(rb_thread_t *th)
356 int result = 0;
357 #if USE_THREAD_CACHE
358 struct cached_thread_entry *entry;
360 if (cached_thread_root) {
361 pthread_mutex_lock(&thread_cache_lock);
362 entry = cached_thread_root;
364 if (cached_thread_root) {
365 cached_thread_root = entry->next;
366 *entry->th_area = th;
367 result = 1;
370 if (result) {
371 pthread_cond_signal(entry->cond);
373 pthread_mutex_unlock(&thread_cache_lock);
375 #endif
376 return result;
379 static int
380 native_thread_create(rb_thread_t *th)
382 int err = 0;
384 if (use_cached_thread(th)) {
385 thread_debug("create (use cached thread): %p\n", th);
387 else {
388 pthread_attr_t attr;
389 size_t stack_size = 512 * 1024; /* 512KB */
390 size_t space;
392 #ifdef PTHREAD_STACK_MIN
393 if (stack_size < PTHREAD_STACK_MIN) {
394 stack_size = PTHREAD_STACK_MIN * 2;
396 #endif
397 space = stack_size/5;
398 if (space > 1024*1024) space = 1024*1024;
399 th->machine_stack_maxsize = stack_size - space;
400 #ifdef __ia64
401 th->machine_stack_maxsize /= 2;
402 th->machine_register_stack_maxsize = th->machine_stack_maxsize;
403 #endif
405 CHECK_ERR(pthread_attr_init(&attr));
407 #ifdef PTHREAD_STACK_MIN
408 thread_debug("create - stack size: %lu\n", (unsigned long)stack_size);
409 CHECK_ERR(pthread_attr_setstacksize(&attr, stack_size));
410 #endif
412 CHECK_ERR(pthread_attr_setinheritsched(&attr, PTHREAD_INHERIT_SCHED));
413 CHECK_ERR(pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_DETACHED));
415 err = pthread_create(&th->thread_id, &attr, thread_start_func_1, th);
416 thread_debug("create: %p (%d)", th, err);
417 CHECK_ERR(pthread_attr_destroy(&attr));
419 if (!err) {
420 pthread_cond_init(&th->native_thread_data.sleep_cond, 0);
422 else {
423 st_delete_wrap(th->vm->living_threads, th->self);
424 th->status = THREAD_KILLED;
425 rb_raise(rb_eThreadError, "can't create Thread (%d)", err);
428 return err;
431 static void
432 native_thread_join(pthread_t th)
434 int err = pthread_join(th, 0);
435 if (err) {
436 rb_raise(rb_eThreadError, "native_thread_join() failed (%d)", err);
440 static void
441 native_thread_apply_priority(rb_thread_t *th)
443 #if defined(_POSIX_PRIORITY_SCHEDULING) && (_POSIX_PRIORITY_SCHEDULING > 0)
444 struct sched_param sp;
445 int policy;
446 int priority = 0 - th->priority;
447 int max, min;
448 pthread_getschedparam(th->thread_id, &policy, &sp);
449 max = sched_get_priority_max(policy);
450 min = sched_get_priority_min(policy);
452 if (min > priority) {
453 priority = min;
455 else if (max < priority) {
456 priority = max;
459 sp.sched_priority = priority;
460 pthread_setschedparam(th->thread_id, policy, &sp);
461 #else
462 /* not touched */
463 #endif
466 static void
467 ubf_pthread_cond_signal(void *ptr)
469 rb_thread_t *th = (rb_thread_t *)ptr;
470 thread_debug("ubf_pthread_cond_signal (%p)\n", th);
471 pthread_cond_signal(&th->native_thread_data.sleep_cond);
474 #ifndef __CYGWIN__
475 static void
476 ubf_select_each(rb_thread_t *th)
478 thread_debug("ubf_select_each (%p)\n", (void *)th->thread_id);
479 if (th) {
480 pthread_kill(th->thread_id, SIGVTALRM);
484 static void
485 ubf_select(void *ptr)
487 rb_thread_t *th = (rb_thread_t *)ptr;
488 add_signal_thread_list(th);
489 ubf_select_each(th);
491 #else
492 #define ubf_select 0
493 #endif
495 static void
496 native_sleep(rb_thread_t *th, struct timeval *tv)
498 struct timespec ts;
499 struct timeval tvn;
501 if (tv) {
502 gettimeofday(&tvn, NULL);
503 ts.tv_sec = tvn.tv_sec + tv->tv_sec;
504 ts.tv_nsec = (tvn.tv_usec + tv->tv_usec) * 1000;
505 if (ts.tv_nsec >= 1000000000){
506 ts.tv_sec += 1;
507 ts.tv_nsec -= 1000000000;
511 thread_debug("native_sleep %ld\n", tv ? tv->tv_sec : -1);
512 GVL_UNLOCK_BEGIN();
514 pthread_mutex_lock(&th->interrupt_lock);
515 th->unblock.func = ubf_pthread_cond_signal;
516 th->unblock.arg = th;
518 if (RUBY_VM_INTERRUPTED(th)) {
519 /* interrupted. return immediate */
520 thread_debug("native_sleep: interrupted before sleep\n");
522 else {
523 if (tv == 0 || ts.tv_sec < tvn.tv_sec /* overflow */ ) {
524 int r;
525 thread_debug("native_sleep: pthread_cond_wait start\n");
526 r = pthread_cond_wait(&th->native_thread_data.sleep_cond,
527 &th->interrupt_lock);
528 if (r) rb_bug("pthread_cond_wait: %d", r);
529 thread_debug("native_sleep: pthread_cond_wait end\n");
531 else {
532 int r;
533 thread_debug("native_sleep: pthread_cond_timedwait start (%ld, %ld)\n",
534 (unsigned long)ts.tv_sec, ts.tv_nsec);
535 r = pthread_cond_timedwait(&th->native_thread_data.sleep_cond,
536 &th->interrupt_lock, &ts);
537 if (r && r != ETIMEDOUT) rb_bug("pthread_cond_timedwait: %d", r);
539 thread_debug("native_sleep: pthread_cond_timedwait end (%d)\n", r);
542 th->unblock.func = 0;
543 th->unblock.arg = 0;
545 pthread_mutex_unlock(&th->interrupt_lock);
547 GVL_UNLOCK_END();
549 thread_debug("native_sleep done\n");
552 struct signal_thread_list {
553 rb_thread_t *th;
554 struct signal_thread_list *prev;
555 struct signal_thread_list *next;
558 #ifndef __CYGWIN__
559 static struct signal_thread_list signal_thread_list_anchor = {
560 0, 0, 0,
562 #endif
564 #define FGLOCK(lock, body) do { \
565 native_mutex_lock(lock); \
567 body; \
569 native_mutex_unlock(lock); \
570 } while (0)
572 #if 0 /* for debug */
573 static void
574 print_signal_list(char *str)
576 struct signal_thread_list *list =
577 signal_thread_list_anchor.next;
578 thread_debug("list (%s)> ", str);
579 while(list){
580 thread_debug("%p (%p), ", list->th, list->th->thread_id);
581 list = list->next;
583 thread_debug("\n");
585 #endif
587 #ifndef __CYGWIN__
588 static void
589 add_signal_thread_list(rb_thread_t *th)
591 if (!th->native_thread_data.signal_thread_list) {
592 FGLOCK(&signal_thread_list_lock, {
593 struct signal_thread_list *list =
594 malloc(sizeof(struct signal_thread_list));
596 if (list == 0) {
597 fprintf(stderr, "[FATAL] failed to allocate memory\n");
598 exit(1);
601 list->th = th;
603 list->prev = &signal_thread_list_anchor;
604 list->next = signal_thread_list_anchor.next;
605 if (list->next) {
606 list->next->prev = list;
608 signal_thread_list_anchor.next = list;
609 th->native_thread_data.signal_thread_list = list;
613 #endif
615 static void
616 remove_signal_thread_list(rb_thread_t *th)
618 if (th->native_thread_data.signal_thread_list) {
619 FGLOCK(&signal_thread_list_lock, {
620 struct signal_thread_list *list =
621 (struct signal_thread_list *)
622 th->native_thread_data.signal_thread_list;
624 list->prev->next = list->next;
625 if (list->next) {
626 list->next->prev = list->prev;
628 th->native_thread_data.signal_thread_list = 0;
629 list->th = 0;
630 free(list); /* ok */
633 else {
634 /* */
638 static pthread_t timer_thread_id;
640 static void *
641 thread_timer(void *dummy)
643 while (system_working) {
644 #ifdef HAVE_NANOSLEEP
645 struct timespec req, rem;
646 req.tv_sec = 0;
647 req.tv_nsec = 10 * 1000 * 1000; /* 10 ms */
648 nanosleep(&req, &rem);
649 #else
650 struct timeval tv;
651 tv.tv_sec = 0;
652 tv.tv_usec = 10000; /* 10 ms */
653 select(0, NULL, NULL, NULL, &tv);
654 #endif
655 #ifndef __CYGWIN__
656 if (signal_thread_list_anchor.next) {
657 FGLOCK(&signal_thread_list_lock, {
658 struct signal_thread_list *list;
659 list = signal_thread_list_anchor.next;
660 while (list) {
661 ubf_select_each(list->th);
662 list = list->next;
666 #endif
667 timer_thread_function(dummy);
669 return NULL;
672 static void
673 rb_thread_create_timer_thread(void)
675 rb_enable_interrupt();
677 if (!timer_thread_id) {
678 pthread_attr_t attr;
679 int err;
681 pthread_attr_init(&attr);
682 #ifdef PTHREAD_STACK_MIN
683 pthread_attr_setstacksize(&attr,
684 PTHREAD_STACK_MIN + (THREAD_DEBUG ? BUFSIZ : 0));
685 #endif
686 err = pthread_create(&timer_thread_id, &attr, thread_timer, GET_VM());
687 if (err != 0) {
688 rb_bug("rb_thread_create_timer_thread: return non-zero (%d)", err);
691 rb_disable_interrupt(); /* only timer thread recieve signal */
694 #endif /* THREAD_SYSTEM_DEPENDENT_IMPLEMENTATION */