module Clock
Definitions
def self.now
Get the current elapsed monotonic time.
Implementation
def self.now
::Process.clock_gettime(::Process::CLOCK_MONOTONIC)
end
module Clock
def self.now
Get the current elapsed monotonic time.
def self.now
::Process.clock_gettime(::Process::CLOCK_MONOTONIC)
end