mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
unused functions
* thread_win32.c: native_cond_signal, native_cond_wait, native_cond_initialize, native_cond_destroy are not used now. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@59067 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
6c3f1461cd
commit
1542ab670e
1 changed files with 2 additions and 4 deletions
|
@ -374,6 +374,7 @@ struct cond_event_entry {
|
|||
HANDLE event;
|
||||
};
|
||||
|
||||
#if 0
|
||||
static void
|
||||
native_cond_signal(rb_nativethread_cond_t *cond)
|
||||
{
|
||||
|
@ -393,7 +394,6 @@ native_cond_signal(rb_nativethread_cond_t *cond)
|
|||
}
|
||||
}
|
||||
|
||||
#if 0
|
||||
static void
|
||||
native_cond_broadcast(rb_nativethread_cond_t *cond)
|
||||
{
|
||||
|
@ -414,7 +414,6 @@ native_cond_broadcast(rb_nativethread_cond_t *cond)
|
|||
e = next;
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
||||
static int
|
||||
native_cond_timedwait_ms(rb_nativethread_cond_t *cond, rb_nativethread_lock_t *mutex, unsigned long msec)
|
||||
|
@ -453,7 +452,6 @@ native_cond_wait(rb_nativethread_cond_t *cond, rb_nativethread_lock_t *mutex)
|
|||
return native_cond_timedwait_ms(cond, mutex, INFINITE);
|
||||
}
|
||||
|
||||
#if 0
|
||||
static unsigned long
|
||||
abs_timespec_to_timeout_ms(const struct timespec *ts)
|
||||
{
|
||||
|
@ -511,7 +509,6 @@ native_cond_timeout(rb_nativethread_cond_t *cond, struct timespec timeout_rel)
|
|||
|
||||
return timeout;
|
||||
}
|
||||
#endif
|
||||
|
||||
static void
|
||||
native_cond_initialize(rb_nativethread_cond_t *cond, int flags)
|
||||
|
@ -525,6 +522,7 @@ native_cond_destroy(rb_nativethread_cond_t *cond)
|
|||
{
|
||||
/* */
|
||||
}
|
||||
#endif
|
||||
|
||||
void
|
||||
ruby_init_stack(volatile VALUE *addr)
|
||||
|
|
Loading…
Add table
Reference in a new issue