aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport
diff options
context:
space:
mode:
authorRafael França <rafaelmfranca@gmail.com>2018-07-30 02:48:24 -0400
committerGitHub <noreply@github.com>2018-07-30 02:48:24 -0400
commitcfee9feee423947cf9e6d2508a85507cca6f75f3 (patch)
treebc3e2381c4e4a79fc72ad2775c2b050826eab823 /activesupport
parenteb4f7cad2087ea9365da36938784bcb80696a9d8 (diff)
parent0ab64b162f5d001ee095958acf6c3bf6c2fad92d (diff)
downloadrails-cfee9feee423947cf9e6d2508a85507cca6f75f3.tar.gz
rails-cfee9feee423947cf9e6d2508a85507cca6f75f3.tar.bz2
rails-cfee9feee423947cf9e6d2508a85507cca6f75f3.zip
Merge pull request #33468 from bdewater/xplatform-cpu-time
Only use CLOCK_PROCESS_CPUTIME_ID if it's defined
Diffstat (limited to 'activesupport')
-rw-r--r--activesupport/lib/active_support/notifications/instrumenter.rb10
1 files changed, 8 insertions, 2 deletions
diff --git a/activesupport/lib/active_support/notifications/instrumenter.rb b/activesupport/lib/active_support/notifications/instrumenter.rb
index 455b7a44a6..f8344912bb 100644
--- a/activesupport/lib/active_support/notifications/instrumenter.rb
+++ b/activesupport/lib/active_support/notifications/instrumenter.rb
@@ -130,8 +130,14 @@ module ActiveSupport
Process.clock_gettime(Process::CLOCK_MONOTONIC)
end
- def now_cpu
- Process.clock_gettime(Process::CLOCK_PROCESS_CPUTIME_ID)
+ if defined?(Process::CLOCK_PROCESS_CPUTIME_ID)
+ def now_cpu
+ Process.clock_gettime(Process::CLOCK_PROCESS_CPUTIME_ID)
+ end
+ else
+ def now_cpu
+ 0
+ end
end
if defined?(JRUBY_VERSION)