We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 86b9cc6 commit cfe2a6eCopy full SHA for cfe2a6e
lib/stackprof.rb
@@ -6,6 +6,11 @@
6
7
if defined?(RubyVM::YJIT) && RubyVM::YJIT.enabled?
8
StackProf.use_postponed_job!
9
+elsif RUBY_VERSION == "3.2.0"
10
+ # 3.2.0 crash is the signal is received at the wrong time.
11
+ # Fixed in https://github.com/ruby/ruby/pull/7116
12
+ # The fix is backported in 3.2.1: https://bugs.ruby-lang.org/issues/19336
13
+ StackProf.use_postponed_job!
14
end
15
16
module StackProf
0 commit comments