mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* thread_pthread.c, thread_pthread.h: remove unused variables.
(native_thread_data_t::gvl_cond, native_thread_data_t::gvl_next) git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@32136 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
f45d127ada
commit
772a281192
3 changed files with 5 additions and 4 deletions
|
@ -1,3 +1,8 @@
|
|||
Fri Jun 17 04:48:22 2011 Koichi Sasada <ko1@atdot.net>
|
||||
|
||||
* thread_pthread.c, thread_pthread.h: remove unused variables.
|
||||
(native_thread_data_t::gvl_cond, native_thread_data_t::gvl_next)
|
||||
|
||||
Thu Jun 16 14:32:31 2011 NARUSE, Yui <naruse@ruby-lang.org>
|
||||
|
||||
* time.c (rb_time_new): prevent overflow by "* 1000".
|
||||
|
|
|
@ -422,14 +422,12 @@ static void
|
|||
native_thread_init(rb_thread_t *th)
|
||||
{
|
||||
native_cond_initialize(&th->native_thread_data.sleep_cond, RB_CONDATTR_CLOCK_MONOTONIC);
|
||||
native_cond_initialize(&th->native_thread_data.gvl_cond, 0);
|
||||
ruby_thread_set_native(th);
|
||||
}
|
||||
|
||||
static void
|
||||
native_thread_destroy(rb_thread_t *th)
|
||||
{
|
||||
native_cond_destroy(&th->native_thread_data.gvl_cond);
|
||||
native_cond_destroy(&th->native_thread_data.sleep_cond);
|
||||
}
|
||||
|
||||
|
|
|
@ -28,8 +28,6 @@ typedef struct rb_thread_cond_struct {
|
|||
typedef struct native_thread_data_struct {
|
||||
void *signal_thread_list;
|
||||
rb_thread_cond_t sleep_cond;
|
||||
rb_thread_cond_t gvl_cond;
|
||||
struct rb_thread_struct *gvl_next;
|
||||
} native_thread_data_t;
|
||||
|
||||
#include <semaphore.h>
|
||||
|
|
Loading…
Reference in a new issue