Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit f7665ae

Browse files
committedJul 10, 2016
Merge remote-tracking branch 'origin' into codedb-ffi-io
2 parents 11458eb + 8438157 commit f7665ae

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+509
-424
lines changed
 

‎configure

+1-1
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ class Configure
161161
@vendored_libdir = File.join(root, "/vendor")
162162

163163
# Ruby compatibility version
164-
@ruby_version = "2.3.0"
164+
@ruby_version = "2.3.1"
165165
@ruby_libversion = @ruby_version.split(/\./)[0..1].join.to_i
166166

167167
@build_bin = "#{@sourcedir}/build/bin"

‎core/exception.rb

+8
Original file line numberDiff line numberDiff line change
@@ -545,6 +545,14 @@ def message
545545
end
546546
end
547547

548+
class InterpreterError < Exception
549+
550+
end
551+
552+
class DeadlockError < Exception
553+
554+
end
555+
548556
# MRI has an Exception class named "fatal" that is raised
549557
# by the rb_fatal function. The class is not accessible from
550558
# ruby because the name is begins with a lower-case letter.

0 commit comments

Comments
 (0)
Please sign in to comment.