mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
define rb_thread_sleep_deadly_allow_spurious_wakeup().
* thread.c, thread_sync.c: define new function rb_thread_sleep_deadly_allow_spurious_wakeup() and use it instead of using sleep_forever() directly. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@57478 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
919a9d9e02
commit
6897b3b985
2 changed files with 9 additions and 1 deletions
8
thread.c
8
thread.c
|
@ -85,6 +85,7 @@ static ID id_locals;
|
|||
static void sleep_timeval(rb_thread_t *th, struct timeval time, int spurious_check);
|
||||
static void sleep_wait_for_interrupt(rb_thread_t *th, double sleepsec, int spurious_check);
|
||||
static void sleep_forever(rb_thread_t *th, int nodeadlock, int spurious_check);
|
||||
static void rb_thread_sleep_deadly_allow_spurious_wakeup(void);
|
||||
static double timeofday(void);
|
||||
static int rb_threadptr_dead(rb_thread_t *th);
|
||||
static void rb_check_deadlock(rb_vm_t *vm);
|
||||
|
@ -1146,6 +1147,13 @@ rb_thread_sleep_deadly(void)
|
|||
sleep_forever(GET_THREAD(), TRUE, TRUE);
|
||||
}
|
||||
|
||||
static void
|
||||
rb_thread_sleep_deadly_allow_spurious_wakeup(void)
|
||||
{
|
||||
thread_debug("rb_thread_sleep_deadly_allow_spurious_wakeup\n");
|
||||
sleep_forever(GET_THREAD(), TRUE, FALSE);
|
||||
}
|
||||
|
||||
static double
|
||||
timeofday(void)
|
||||
{
|
||||
|
|
|
@ -420,7 +420,7 @@ rb_mutex_abandon_all(rb_mutex_t *mutexes)
|
|||
static VALUE
|
||||
rb_mutex_sleep_forever(VALUE time)
|
||||
{
|
||||
sleep_forever(GET_THREAD(), TRUE, FALSE); /* permit spurious check */
|
||||
rb_thread_sleep_deadly_allow_spurious_wakeup();
|
||||
return Qnil;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue