summaryrefslogtreecommitdiff
path: root/spec/ruby/core/process/fixtures/clocks.rb
blob: 15297e6e6f15db2611a7d905e0fd2312d438a02e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
module ProcessSpecs
  def self.clock_constants
    clocks = []

    platform_is_not :windows, :solaris do
      clocks += Process.constants.select { |c| c.to_s.start_with?('CLOCK_') }

      # These require CAP_WAKE_ALARM and are not documented in
      # Process#clock_gettime. They return EINVAL if the permission
      # is not granted.
      clocks -= [:CLOCK_BOOTTIME_ALARM, :CLOCK_REALTIME_ALARM]

      # These clocks in practice on Linux do not seem to match
      # their reported resolution.
      clocks -= [:CLOCK_REALTIME_COARSE, :CLOCK_MONOTONIC_COARSE]

      clocks.map! { |c|
        [c, Process.const_get(c)]
      }
    end

    clocks
  end
end