kgio RubyGem user+dev discussion/patches/pulls/bugs/help
 help / color / mirror / code / Atom feed
* [PATCH] avoid deprecated rb_thread_blocking_region on MRI 2.x
@ 2014-02-15  8:25 Eric Wong
  0 siblings, 0 replies; only message in thread
From: Eric Wong @ 2014-02-15  8:25 UTC (permalink / raw)
  To: kgio

We've finally figured out how to avoid warnings when building on
C Ruby 2.x
---
 ext/kgio/kgio.h | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/ext/kgio/kgio.h b/ext/kgio/kgio.h
index 66a8705..7c992fb 100644
--- a/ext/kgio/kgio.h
+++ b/ext/kgio/kgio.h
@@ -39,8 +39,7 @@ void kgio_autopush_send(VALUE);
 
 VALUE kgio_call_wait_writable(VALUE io);
 VALUE kgio_call_wait_readable(VALUE io);
-#if defined(HAVE_RB_THREAD_CALL_WITHOUT_GVL) && \
-    !defined(HAVE_RB_THREAD_BLOCKING_REGION)
+#if defined(HAVE_RB_THREAD_CALL_WITHOUT_GVL) && defined(HAVE_RUBY_THREAD_H)
 #  define KGIO_WITHOUT_GVL(fn,data1,ubf,data2) \
       rb_thread_call_without_gvl((fn),(data1),(ubf),(data2))
 #elif defined(HAVE_RB_THREAD_BLOCKING_REGION)
-- 
Eric Wong


^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2014-02-15  8:25 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-02-15  8:25 [PATCH] avoid deprecated rb_thread_blocking_region on MRI 2.x Eric Wong

Code repositories for project(s) associated with this public inbox

	https://yhbt.net/kgio.git/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).