package kaun-board

  1. Overview
  2. Docs

Module Sysstat.ProcSource

Process statistics.

Sourcetype state =
  1. | Running
    (*

    Currently executing on CPU.

    *)
  2. | Sleeping
    (*

    Interruptible sleep (waiting for event).

    *)
  3. | Disk_sleep
    (*

    Uninterruptible sleep (waiting for I/O).

    *)
  4. | Stopped
    (*

    Stopped by signal (e.g., SIGSTOP).

    *)
  5. | Zombie
    (*

    Terminated but not yet reaped by parent.

    *)
  6. | Idle
    (*

    Idle kernel thread.

    *)
  7. | Unknown
    (*

    State could not be determined.

    *)

Process state.

Sourcemodule Self : sig ... end

Current process (self) statistics.

Sourcemodule Table : sig ... end

Process table statistics.