package stdune

  1. Overview
  2. Docs
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source

Module Proc.Resource_usageSource

Sourcetype t = {
  1. user_cpu_time : Time.Span.t;
    (*

    Same as the "user" time reported by the "time" command

    *)
  2. system_cpu_time : Time.Span.t;
    (*

    Same as the "sys" time reported by the "time" command

    *)
  3. maxrss : int;
  4. minflt : int;
  5. majflt : int;
  6. inblock : int;
  7. oublock : int;
  8. nvcsw : int;
  9. nivcsw : int;
}
Sourceval zero : t