2019-04-27 12:53:23 -04:00
|
|
|
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
|
2019-04-28 08:35:17 -04:00
|
|
|
# Process#clock_gettime. They return EINVAL if the permission
|
2019-04-27 12:53:23 -04:00
|
|
|
# is not granted.
|
|
|
|
clocks -= [:CLOCK_BOOTTIME_ALARM, :CLOCK_REALTIME_ALARM]
|
|
|
|
end
|
|
|
|
|
2019-04-28 08:36:03 -04:00
|
|
|
clocks.map { |c|
|
|
|
|
[c, Process.const_get(c)]
|
|
|
|
}
|
2019-04-27 12:53:23 -04:00
|
|
|
end
|
2019-04-28 08:52:55 -04:00
|
|
|
|
|
|
|
def self.clock_constants_for_resolution_checks
|
|
|
|
clocks = clock_constants
|
|
|
|
|
|
|
|
# These clocks in practice on Linux do not seem to match their reported resolution.
|
|
|
|
clocks = clocks.reject { |clock, value|
|
|
|
|
[:CLOCK_REALTIME_COARSE, :CLOCK_MONOTONIC_COARSE].include?(clock)
|
|
|
|
}
|
|
|
|
|
|
|
|
# These clocks in practice on ARM on Linux do not seem to match their reported resolution.
|
|
|
|
platform_is :armv7l, :aarch64 do
|
|
|
|
clocks = clocks.reject { |clock, value|
|
|
|
|
[:CLOCK_PROCESS_CPUTIME_ID, :CLOCK_THREAD_CPUTIME_ID, :CLOCK_MONOTONIC_RAW].include?(clock)
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
clocks
|
|
|
|
end
|
2019-04-27 12:53:23 -04:00
|
|
|
end
|