Sha256: 0c4aced17350ca6ce7bb551a6f6b05921730741affef258e9723448378ba83f7
Contents?: true
Size: 1.18 KB
Versions: 3
Compression:
Stored size: 1.18 KB
Contents
#ifndef RUBY_EV_H #define RUBY_EV_H #include "ruby.h" #include "ruby/io.h" #include "libev.h" enum { FIBER_STATE_NOT_SCHEDULED = 0, FIBER_STATE_WAITING = 1, FIBER_STATE_SCHEDULED = 2 }; // void Gyro_add_watcher_ref(VALUE obj); // void Gyro_del_watcher_ref(VALUE obj); VALUE Gyro_snooze(VALUE self); VALUE Gyro_run_next_fiber(); VALUE Gyro_await(); void Gyro_schedule_fiber(VALUE fiber, VALUE value); int Gyro_ref_count(); void Gyro_ref_count_incr(); void Gyro_ref_count_decr(); VALUE IO_read_watcher(VALUE io); VALUE IO_write_watcher(VALUE io); VALUE Gyro_IO_await(VALUE self); int io_setstrbuf(VALUE *str, long len); void io_set_read_length(VALUE str, long n, int shrinkable); VALUE io_enc_str(VALUE str, rb_io_t *fptr); #define OBJ_ID(obj) (NUM2LONG(rb_funcall(obj, rb_intern("object_id"), 0))) extern VALUE mGyro; extern VALUE Gyro_reactor_fiber; extern VALUE Gyro_root_fiber; extern ID ID_call; extern ID ID_caller; extern ID ID_clear; extern ID ID_each; extern ID ID_inspect; extern ID ID_raise; extern ID ID_read_watcher; extern ID ID_scheduled_value; extern ID ID_transfer; extern ID ID_write_watcher; extern ID ID_R; extern ID ID_W; extern ID ID_RW; #endif /* RUBY_EV_H */
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
polyphony-0.25 | ext/gyro/gyro.h |
polyphony-0.24 | ext/gyro/gyro.h |
polyphony-0.23 | ext/gyro/gyro.h |