diff options
Diffstat (limited to 'spec/ruby/optional/capi/ext/mutex_spec.c')
| -rw-r--r-- | spec/ruby/optional/capi/ext/mutex_spec.c | 61 |
1 files changed, 23 insertions, 38 deletions
diff --git a/spec/ruby/optional/capi/ext/mutex_spec.c b/spec/ruby/optional/capi/ext/mutex_spec.c index d5ce06e124..d2c8f98e89 100644 --- a/spec/ruby/optional/capi/ext/mutex_spec.c +++ b/spec/ruby/optional/capi/ext/mutex_spec.c @@ -5,84 +5,69 @@ extern "C" { #endif -#ifdef HAVE_RB_MUTEX_NEW VALUE mutex_spec_rb_mutex_new(VALUE self) { return rb_mutex_new(); } -#endif -#ifdef HAVE_RB_MUTEX_LOCKED_P VALUE mutex_spec_rb_mutex_locked_p(VALUE self, VALUE mutex) { return rb_mutex_locked_p(mutex); } -#endif -#ifdef HAVE_RB_MUTEX_TRYLOCK VALUE mutex_spec_rb_mutex_trylock(VALUE self, VALUE mutex) { return rb_mutex_trylock(mutex); } -#endif -#ifdef HAVE_RB_MUTEX_LOCK VALUE mutex_spec_rb_mutex_lock(VALUE self, VALUE mutex) { return rb_mutex_lock(mutex); } -#endif -#ifdef HAVE_RB_MUTEX_UNLOCK VALUE mutex_spec_rb_mutex_unlock(VALUE self, VALUE mutex) { return rb_mutex_unlock(mutex); } -#endif -#ifdef HAVE_RB_MUTEX_SLEEP VALUE mutex_spec_rb_mutex_sleep(VALUE self, VALUE mutex, VALUE timeout) { return rb_mutex_sleep(mutex, timeout); } -#endif - -#ifdef HAVE_RB_MUTEX_SYNCHRONIZE VALUE mutex_spec_rb_mutex_callback(VALUE arg) { return rb_funcall(arg, rb_intern("call"), 0); } +VALUE mutex_spec_rb_mutex_naughty_callback(VALUE arg) { + int *result = (int *) arg; + return (VALUE) result; +} + +VALUE mutex_spec_rb_mutex_callback_basic(VALUE arg) { + return arg; +} + VALUE mutex_spec_rb_mutex_synchronize(VALUE self, VALUE mutex, VALUE value) { return rb_mutex_synchronize(mutex, mutex_spec_rb_mutex_callback, value); } -#endif -void Init_mutex_spec(void) { - VALUE cls; - cls = rb_define_class("CApiMutexSpecs", rb_cObject); +VALUE mutex_spec_rb_mutex_synchronize_with_naughty_callback(VALUE self, VALUE mutex) { + // a naughty callback accepts or returns not a Ruby object but arbitrary value + int arg = 42; + VALUE result = rb_mutex_synchronize(mutex, mutex_spec_rb_mutex_naughty_callback, (VALUE) &arg); + return INT2NUM(*((int *) result)); +} -#ifdef HAVE_RB_MUTEX_NEW - rb_define_method(cls, "rb_mutex_new", mutex_spec_rb_mutex_new, 0); -#endif +VALUE mutex_spec_rb_mutex_synchronize_with_native_callback(VALUE self, VALUE mutex, VALUE value) { + return rb_mutex_synchronize(mutex, mutex_spec_rb_mutex_callback_basic, value); +} -#ifdef HAVE_RB_MUTEX_LOCKED_P +void Init_mutex_spec(void) { + VALUE cls = rb_define_class("CApiMutexSpecs", rb_cObject); + rb_define_method(cls, "rb_mutex_new", mutex_spec_rb_mutex_new, 0); rb_define_method(cls, "rb_mutex_locked_p", mutex_spec_rb_mutex_locked_p, 1); -#endif - -#ifdef HAVE_RB_MUTEX_TRYLOCK rb_define_method(cls, "rb_mutex_trylock", mutex_spec_rb_mutex_trylock, 1); -#endif - -#ifdef HAVE_RB_MUTEX_LOCK rb_define_method(cls, "rb_mutex_lock", mutex_spec_rb_mutex_lock, 1); -#endif - -#ifdef HAVE_RB_MUTEX_UNLOCK rb_define_method(cls, "rb_mutex_unlock", mutex_spec_rb_mutex_unlock, 1); -#endif - -#ifdef HAVE_RB_MUTEX_SLEEP rb_define_method(cls, "rb_mutex_sleep", mutex_spec_rb_mutex_sleep, 2); -#endif - -#ifdef HAVE_RB_MUTEX_SYNCHRONIZE rb_define_method(cls, "rb_mutex_synchronize", mutex_spec_rb_mutex_synchronize, 2); -#endif + rb_define_method(cls, "rb_mutex_synchronize_with_naughty_callback", mutex_spec_rb_mutex_synchronize_with_naughty_callback, 1); + rb_define_method(cls, "rb_mutex_synchronize_with_native_callback", mutex_spec_rb_mutex_synchronize_with_native_callback, 2); } #ifdef __cplusplus |
