Console SourceConsoleClock

module Clock

Definitions

def self.now

Get the current elapsed monotonic time.

Implementation

def self.now
	::Process.clock_gettime(::Process::CLOCK_MONOTONIC)
end