2006-12-31 18:02:22 +03:00
|
|
|
/**********************************************************************
|
|
|
|
|
|
|
|
thread_pthread.h -
|
|
|
|
|
|
|
|
$Author$
|
|
|
|
|
* blockinlining.c, compile.c, compile.h, debug.c, debug.h,
id.c, insnhelper.h, insns.def, thread.c, thread_pthread.ci,
thread_pthread.h, thread_win32.ci, thread_win32.h, vm.h,
vm_dump.c, vm_evalbody.ci, vm_opts.h: fix comments and
copyright year.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@13920 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-11-14 01:13:04 +03:00
|
|
|
Copyright (C) 2004-2007 Koichi Sasada
|
2006-12-31 18:02:22 +03:00
|
|
|
|
|
|
|
**********************************************************************/
|
|
|
|
|
2008-01-18 11:56:11 +03:00
|
|
|
#ifndef RUBY_THREAD_PTHREAD_H
|
|
|
|
#define RUBY_THREAD_PTHREAD_H
|
2006-12-31 18:02:22 +03:00
|
|
|
|
|
|
|
#include <pthread.h>
|
2010-02-04 10:17:03 +03:00
|
|
|
#ifdef HAVE_PTHREAD_NP_H
|
|
|
|
#include <pthread_np.h>
|
|
|
|
#endif
|
* blockinlining.c, compile.c, compile.h, error.c, eval.c,
eval_intern.h, eval_jump.h, eval_load.c, eval_method.h,
eval_safe.h, gc.c, insnhelper.h, insns.def, iseq.c, proc.c,
process.c, signal.c, thread.c, thread_pthread.ci, thread_win32.ci,
vm.c, vm.h, vm_dump.c, vm_evalbody.ci, vm_macro.def,
yarv.h, yarvcore.h, yarvcore.c: change type and macro names:
* yarv_*_t -> rb_*_t
* yarv_*_struct -> rb_*_struct
* yarv_tag -> rb_vm_tag
* YARV_* -> RUBY_VM_*
* proc.c, vm.c: move functions about env object creation
from proc.c to vm.c.
* proc.c, yarvcore.c: fix rb_cVM initialization place.
* inits.c: change Init_ISeq() order (after Init_VM).
* ruby.h, proc.c: change declaration place of rb_cEnv
from proc.c to ruby.c.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11651 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-02-06 22:00:03 +03:00
|
|
|
typedef pthread_t rb_thread_id_t;
|
|
|
|
typedef pthread_mutex_t rb_thread_lock_t;
|
2011-05-06 20:47:38 +04:00
|
|
|
|
|
|
|
typedef struct rb_thread_cond_struct {
|
|
|
|
pthread_cond_t cond;
|
2011-05-07 13:28:43 +04:00
|
|
|
#ifdef HAVE_CLOCKID_T
|
2011-05-06 20:47:38 +04:00
|
|
|
clockid_t clockid;
|
2011-05-07 13:28:43 +04:00
|
|
|
#endif
|
2011-05-06 20:47:38 +04:00
|
|
|
} rb_thread_cond_t;
|
2006-12-31 18:02:22 +03:00
|
|
|
|
|
|
|
typedef struct native_thread_data_struct {
|
|
|
|
void *signal_thread_list;
|
2011-05-06 20:47:38 +04:00
|
|
|
rb_thread_cond_t sleep_cond;
|
2006-12-31 18:02:22 +03:00
|
|
|
} native_thread_data_t;
|
|
|
|
|
2010-11-27 23:15:59 +03:00
|
|
|
#include <semaphore.h>
|
|
|
|
|
|
|
|
typedef struct rb_global_vm_lock_struct {
|
2011-06-13 18:14:53 +04:00
|
|
|
/* fast path */
|
|
|
|
unsigned long acquired;
|
2010-11-27 23:15:59 +03:00
|
|
|
pthread_mutex_t lock;
|
2011-06-13 18:14:53 +04:00
|
|
|
|
|
|
|
/* slow path */
|
2011-06-27 16:59:08 +04:00
|
|
|
volatile unsigned long waiting;
|
2011-06-13 18:14:53 +04:00
|
|
|
rb_thread_cond_t cond;
|
|
|
|
|
|
|
|
/* yield */
|
|
|
|
rb_thread_cond_t switch_cond;
|
2011-06-14 20:31:23 +04:00
|
|
|
rb_thread_cond_t switch_wait_cond;
|
|
|
|
int need_yield;
|
|
|
|
int wait_yield;
|
2010-11-27 23:15:59 +03:00
|
|
|
} rb_global_vm_lock_t;
|
|
|
|
|
2008-01-18 11:56:11 +03:00
|
|
|
#endif /* RUBY_THREAD_PTHREAD_H */
|