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
55
56
57
58
59
60
61
62
63
64
65
66
|
/* -*-c-*-
THIS FILE WAS AUTOGENERATED BY tool/compile_prelude.rb. DO NOT EDIT.
sources: prelude
*/
#include "ruby/ruby.h"
#include "internal.h"
#include "vm_core.h"
static const char prelude_name0[] = "<internal:prelude>";
static const char prelude_code0[] =
"class Mutex\n"
" # call-seq:\n"
" # mutex.synchronize { ... }\n"
" #\n"
" # Obtains a lock, runs the block, and releases the lock when the\n"
" # block completes. See the example under Mutex.\n"
" def synchronize\n"
" self.lock\n"
" begin\n"
" yield\n"
" ensure\n"
" self.unlock rescue nil\n"
" end\n"
" end\n"
"end\n"
"\n"
"class Thread\n"
" MUTEX_FOR_THREAD_EXCLUSIVE = Mutex.new # :nodoc:\n"
"\n"
" # call-seq:\n"
" # Thread.exclusive { block } => obj\n"
" #\n"
" # Wraps a block in Thread.critical, restoring the original value\n"
" # upon exit from the critical section, and returns the value of the\n"
" # block.\n"
" def self.exclusive\n"
" MUTEX_FOR_THREAD_EXCLUSIVE.synchronize{\n"
" yield\n"
" }\n"
" end\n"
"end\n"
;
#define PRELUDE_COUNT 0
static void
prelude_eval(VALUE code, VALUE name, VALUE line)
{
rb_iseq_eval(rb_iseq_compile_with_option(code, name, Qnil, line, Qtrue));
}
void
Init_prelude(void)
{
prelude_eval(
rb_usascii_str_new(prelude_code0, sizeof(prelude_code0) - 1),
rb_usascii_str_new(prelude_name0, sizeof(prelude_name0) - 1),
INT2FIX(1));
#if 0
puts(prelude_code0);
#endif
}
|