Module: Corkscrews::Primitives::KernelWait

Defined in:
lib/corkscrews/primitives.rb

Instance Method Summary collapse

Instance Method Details

#sleepObject



85
86
87
88
89
90
# File 'lib/corkscrews/primitives.rb', line 85

def sleep(...)
  started_ns = Corkscrews::TimeSource.monotonic_ns
  result = super
  Corkscrews.record_wait(:sleep_wait, Corkscrews::TimeSource.monotonic_ns - started_ns)
  result
end