Sha256: a7b9ea52c8755b9e3844d92f7053a1567e58da847d83c73b70d89311cc227461
Contents?: true
Size: 934 Bytes
Versions: 16
Compression:
Stored size: 934 Bytes
Contents
#ifndef RBCZMQ_RUBY18_H #define RBCZMQ_RUBY18_H #define THREAD_PASS rb_thread_schedule(); #define ZmqEncode(str) str #include "rubyio.h" #include "rubysig.h" #include "st.h" #ifndef RSTRING_PTR #define RSTRING_PTR(str) RSTRING(str)->ptr #endif #ifndef RSTRING_LEN #define RSTRING_LEN(s) (RSTRING(s)->len) #endif /* * partial emulation of the 1.9 rb_thread_blocking_region under 1.8, * this is enough for dealing with blocking I/O functions in the * presence of threads. */ #define RUBY_UBF_IO ((rb_unblock_function_t *)-1) typedef void rb_unblock_function_t(void *); typedef VALUE rb_blocking_function_t(void *); static VALUE rb_thread_blocking_region( rb_blocking_function_t *func, void *data1, ZMQ_UNUSED rb_unblock_function_t *ubf, ZMQ_UNUSED void *data2) { VALUE rv; TRAP_BEG; rv = func(data1); TRAP_END; return rv; } struct timeval rb_time_interval _((VALUE)); #define rb_errinfo() ruby_errinfo #endif
Version data entries
16 entries across 16 versions & 1 rubygems