mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
6204e0804b
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@66888 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
147 lines
3.9 KiB
C
147 lines
3.9 KiB
C
#include "ruby.h"
|
|
#include "ruby/thread.h"
|
|
#include "rubyspec.h"
|
|
|
|
#include <math.h>
|
|
#include <errno.h>
|
|
#ifdef HAVE_UNISTD_H
|
|
#include <unistd.h>
|
|
#endif
|
|
#if defined(_WIN32)
|
|
#define pipe(p) rb_w32_pipe(p)
|
|
#endif
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
static VALUE thread_spec_rb_thread_alone() {
|
|
return rb_thread_alone() ? Qtrue : Qfalse;
|
|
}
|
|
|
|
#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
|
|
|
|
/* This is unblocked by unblock_func(). */
|
|
static void* blocking_gvl_func(void* data) {
|
|
int rfd = *(int *)data;
|
|
char dummy = ' ';
|
|
ssize_t r;
|
|
|
|
do {
|
|
r = read(rfd, &dummy, 1);
|
|
} while (r == -1 && errno == EINTR);
|
|
|
|
close(rfd);
|
|
|
|
return (void*)((r == 1 && dummy == 'A') ? Qtrue : Qfalse);
|
|
}
|
|
|
|
static void unblock_gvl_func(void *data) {
|
|
int wfd = *(int *)data;
|
|
char dummy = 'A';
|
|
ssize_t r;
|
|
|
|
do {
|
|
r = write(wfd, &dummy, 1);
|
|
} while (r == -1 && errno == EINTR);
|
|
|
|
close(wfd);
|
|
}
|
|
|
|
/* Returns true if the thread is interrupted. */
|
|
static VALUE thread_spec_rb_thread_call_without_gvl(VALUE self) {
|
|
int fds[2];
|
|
void* ret;
|
|
|
|
if (pipe(fds) == -1) {
|
|
rb_raise(rb_eRuntimeError, "could not create pipe");
|
|
}
|
|
ret = rb_thread_call_without_gvl(blocking_gvl_func, &fds[0],
|
|
unblock_gvl_func, &fds[1]);
|
|
return (VALUE)ret;
|
|
}
|
|
|
|
/* This is unblocked by a signal. */
|
|
static void* blocking_gvl_func_for_udf_io(void *data) {
|
|
int rfd = (int)(size_t)data;
|
|
char dummy;
|
|
|
|
if (read(rfd, &dummy, 1) == -1 && errno == EINTR) {
|
|
return (void*)Qtrue;
|
|
} else {
|
|
return (void*)Qfalse;
|
|
}
|
|
}
|
|
|
|
/* Returns true if the thread is interrupted. */
|
|
static VALUE thread_spec_rb_thread_call_without_gvl_with_ubf_io(VALUE self) {
|
|
int fds[2];
|
|
void* ret;
|
|
|
|
if (pipe(fds) == -1) {
|
|
rb_raise(rb_eRuntimeError, "could not create pipe");
|
|
}
|
|
|
|
ret = rb_thread_call_without_gvl(blocking_gvl_func_for_udf_io,
|
|
(void*)(size_t)fds[0], RUBY_UBF_IO, 0);
|
|
close(fds[0]);
|
|
close(fds[1]);
|
|
return (VALUE)ret;
|
|
}
|
|
|
|
static VALUE thread_spec_rb_thread_current() {
|
|
return rb_thread_current();
|
|
}
|
|
|
|
static VALUE thread_spec_rb_thread_local_aref(VALUE self, VALUE thr, VALUE sym) {
|
|
return rb_thread_local_aref(thr, SYM2ID(sym));
|
|
}
|
|
|
|
static VALUE thread_spec_rb_thread_local_aset(VALUE self, VALUE thr, VALUE sym, VALUE value) {
|
|
return rb_thread_local_aset(thr, SYM2ID(sym), value);
|
|
}
|
|
|
|
static VALUE thread_spec_rb_thread_wakeup(VALUE self, VALUE thr) {
|
|
return rb_thread_wakeup(thr);
|
|
}
|
|
|
|
static VALUE thread_spec_rb_thread_wait_for(VALUE self, VALUE s, VALUE ms) {
|
|
struct timeval tv;
|
|
tv.tv_sec = NUM2INT(s);
|
|
tv.tv_usec = NUM2INT(ms);
|
|
rb_thread_wait_for(tv);
|
|
return Qnil;
|
|
}
|
|
|
|
|
|
VALUE thread_spec_call_proc(VALUE arg_array) {
|
|
VALUE arg = rb_ary_pop(arg_array);
|
|
VALUE proc = rb_ary_pop(arg_array);
|
|
return rb_funcall(proc, rb_intern("call"), 1, arg);
|
|
}
|
|
|
|
static VALUE thread_spec_rb_thread_create(VALUE self, VALUE proc, VALUE arg) {
|
|
VALUE args = rb_ary_new();
|
|
rb_ary_push(args, proc);
|
|
rb_ary_push(args, arg);
|
|
|
|
return rb_thread_create(thread_spec_call_proc, (void*)args);
|
|
}
|
|
|
|
|
|
void Init_thread_spec(void) {
|
|
VALUE cls = rb_define_class("CApiThreadSpecs", rb_cObject);
|
|
rb_define_method(cls, "rb_thread_alone", thread_spec_rb_thread_alone, 0);
|
|
rb_define_method(cls, "rb_thread_call_without_gvl", thread_spec_rb_thread_call_without_gvl, 0);
|
|
rb_define_method(cls, "rb_thread_call_without_gvl_with_ubf_io", thread_spec_rb_thread_call_without_gvl_with_ubf_io, 0);
|
|
rb_define_method(cls, "rb_thread_current", thread_spec_rb_thread_current, 0);
|
|
rb_define_method(cls, "rb_thread_local_aref", thread_spec_rb_thread_local_aref, 2);
|
|
rb_define_method(cls, "rb_thread_local_aset", thread_spec_rb_thread_local_aset, 3);
|
|
rb_define_method(cls, "rb_thread_wakeup", thread_spec_rb_thread_wakeup, 1);
|
|
rb_define_method(cls, "rb_thread_wait_for", thread_spec_rb_thread_wait_for, 2);
|
|
rb_define_method(cls, "rb_thread_create", thread_spec_rb_thread_create, 2);
|
|
}
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|