Metrics.hx 263 B

12345678910111213
  1. package eval.luv;
  2. /**
  3. Metrics.
  4. @see https://aantron.github.io/luv/luv/Luv/Metrics
  5. **/
  6. extern class Metrics {
  7. /**
  8. Retrieves the amount of time the loop has been blocked waiting in the kernel.
  9. **/
  10. static function idleTime(loop:Loop):eval.integers.UInt64;
  11. }