mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
590dc06e38
Not to interfere in other tests.
78 lines
1.5 KiB
C
78 lines
1.5 KiB
C
#include "ruby/ruby.h"
|
|
#include "ruby/thread.h"
|
|
|
|
static void*
|
|
native_sleep_callback(void *data)
|
|
{
|
|
struct timeval *timeval = data;
|
|
select(0, NULL, NULL, NULL, timeval);
|
|
|
|
return NULL;
|
|
}
|
|
|
|
|
|
static VALUE
|
|
thread_runnable_sleep(VALUE thread, VALUE timeout)
|
|
{
|
|
struct timeval timeval;
|
|
|
|
if (NIL_P(timeout)) {
|
|
rb_raise(rb_eArgError, "timeout must be non nil");
|
|
}
|
|
|
|
timeval = rb_time_interval(timeout);
|
|
|
|
rb_thread_call_without_gvl(native_sleep_callback, &timeval, RUBY_UBF_IO, NULL);
|
|
|
|
return Qnil;
|
|
}
|
|
|
|
struct loop_ctl {
|
|
int notify_fd;
|
|
volatile int stop;
|
|
};
|
|
|
|
static void *
|
|
do_loop(void *p)
|
|
{
|
|
struct loop_ctl *ctl = p;
|
|
|
|
/* tell the waiting process they can interrupt us, now */
|
|
ssize_t err = write(ctl->notify_fd, "", 1);
|
|
if (err == -1) rb_bug("write error");
|
|
|
|
while (!ctl->stop) {
|
|
struct timeval tv = { 0, 10000 };
|
|
select(0, NULL, NULL, NULL, &tv);
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
static void
|
|
stop_set(void *p)
|
|
{
|
|
struct loop_ctl *ctl = p;
|
|
|
|
ctl->stop = 1;
|
|
}
|
|
|
|
static VALUE
|
|
thread_ubf_async_safe(VALUE thread, VALUE notify_fd)
|
|
{
|
|
struct loop_ctl ctl;
|
|
|
|
ctl.notify_fd = NUM2INT(notify_fd);
|
|
ctl.stop = 0;
|
|
|
|
rb_nogvl(do_loop, &ctl, stop_set, &ctl, RB_NOGVL_UBF_ASYNC_SAFE);
|
|
return Qnil;
|
|
}
|
|
|
|
void
|
|
Init_call_without_gvl(void)
|
|
{
|
|
VALUE mBug = rb_define_module("Bug");
|
|
VALUE klass = rb_define_module_under(mBug, "Thread");
|
|
rb_define_singleton_method(klass, "runnable_sleep", thread_runnable_sleep, 1);
|
|
rb_define_singleton_method(klass, "ubf_async_safe", thread_ubf_async_safe, 1);
|
|
}
|