summaryrefslogtreecommitdiff
path: root/thread_pthread.c
diff options
context:
space:
mode:
authorkosaki <kosaki@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-06-27 12:18:00 +0000
committerkosaki <kosaki@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-06-27 12:18:00 +0000
commitea3da57e1234b47f6c851d1760637fe627e9579d (patch)
tree4187a1aa193caebd98d779827ea77b68eb74d8be /thread_pthread.c
parentc32869dfeb9ce2958759639755419dd80afb8101 (diff)
* thread_pthread.c: s/__gvl_acquire/gvl_acquire_common/ and
s/__gvl_release/gvl_release_common/. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@32248 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'thread_pthread.c')
-rw-r--r--thread_pthread.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/thread_pthread.c b/thread_pthread.c
index 3870d1812d..2c5e31a4ce 100644
--- a/thread_pthread.c
+++ b/thread_pthread.c
@@ -46,7 +46,7 @@ static void native_cond_destroy(rb_thread_cond_t *cond);
#endif
static void
-__gvl_acquire(rb_vm_t *vm)
+gvl_acquire_common(rb_vm_t *vm)
{
if (vm->gvl.acquired) {
@@ -75,12 +75,12 @@ static void
gvl_acquire(rb_vm_t *vm, rb_thread_t *th)
{
native_mutex_lock(&vm->gvl.lock);
- __gvl_acquire(vm);
+ gvl_acquire_common(vm);
native_mutex_unlock(&vm->gvl.lock);
}
static void
-__gvl_release(rb_vm_t *vm)
+gvl_release_common(rb_vm_t *vm)
{
vm->gvl.acquired = 0;
if (vm->gvl.waiting > 0)
@@ -91,7 +91,7 @@ static void
gvl_release(rb_vm_t *vm)
{
native_mutex_lock(&vm->gvl.lock);
- __gvl_release(vm);
+ gvl_release_common(vm);
native_mutex_unlock(&vm->gvl.lock);
}
@@ -100,7 +100,7 @@ gvl_yield(rb_vm_t *vm, rb_thread_t *th)
{
native_mutex_lock(&vm->gvl.lock);
- __gvl_release(vm);
+ gvl_release_common(vm);
/* An another thread is processing GVL yield. */
if (UNLIKELY(vm->gvl.wait_yield)) {
@@ -129,7 +129,7 @@ gvl_yield(rb_vm_t *vm, rb_thread_t *th)
vm->gvl.wait_yield = 0;
native_cond_broadcast(&vm->gvl.switch_wait_cond);
acquire:
- __gvl_acquire(vm);
+ gvl_acquire_common(vm);
native_mutex_unlock(&vm->gvl.lock);
}