mahoro.git  about / heads / tags
Ruby interface to libmagic
blob c5b677848cd4a226077f8f2fd55ff0dfbd84f090 1671 bytes (raw)
$ git show HEAD:ext/mahoro/nogvl_compat.h	# shows this blob on the CLI

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
 
#ifndef NOGVL_COMPAT_H
#define NOGVL_COMPAT_H
/*
 * Compatibility layer for various GVL-releasing wrappers.
 *
 * This layer will be updated to favor compatibility with the latest
 * Matz Ruby C API, currently Ruby 2.0.0 (as of 2013-04-05).
 *
 * rb_thread_call_without_gvl was detectable via have_func in 1.9.3,
 * but not usable.  So we must check for ruby/thread.h and use
 * rb_thread_blocking_region if ruby/thread.h is not available
 *
 * HAVE_RUBY_THREAD_H is defined by ruby.h in 2.0.0, NOT using
 * extconf.rb since that may find ruby/thread.h in a different
 * installation
 */
#if defined(HAVE_RB_THREAD_CALL_WITHOUT_GVL) && \
	defined(HAVE_RUBY_THREAD_H) && HAVE_RUBY_THREAD_H /* Ruby 2.0.0 */
#  include <ruby/thread.h>
#  define NOGVL(fn,data1,ubf,data2) \
      rb_thread_call_without_gvl((fn),(data1),(ubf),(data2))
#elif defined(HAVE_RB_THREAD_BLOCKING_REGION) /* Ruby 1.9.x */
#  define COMPAT_FN (VALUE (*)(void *))
#  define NOGVL(fn,data1,ubf,data2) \
      (void *)rb_thread_blocking_region(COMPAT_FN(fn),(data1),(ubf),(data2))
#else /* Ruby 1.8 */
/*
 * Ruby 1.8 does not have a GVL, we'll just enable signal interrupts
 * here in case we make interruptible syscalls
 */
#  define RUBY_UBF_IO ((rb_unblock_function_t *)-1)
#  include "rubysig.h"
typedef void rb_unblock_function_t(void *);
typedef void *rb_blocking_function_t(void *);

static void *
fake_nogvl(fn, data1, ubf, data2)
	rb_blocking_function_t fn;
	void *data1;
	rb_unblock_function_t ubf;
	void *data2;
{
	void *rv;

	TRAP_BEG;
	rv = fn(data1);
	TRAP_END;

	return rv;
}
#  define NOGVL(fn,data1,ubf,data2) fake_nogvl((fn),(data1),(ubf),(data2))
#endif

#endif /* NOGVL_COMPAT_H */

git clone https://yhbt.net/mahoro.git