Show / Hide Table of Contents

Enum Process.Types.State

The state of the process. See https://psutil.readthedocs.io/en/stable/#process-status-constants.

Namespace: Google.Backstory
Assembly: Google.Backstory.dll
Syntax
public enum Process.Types.State

Fields

Name Description
Dead

Process is terminated.

DiskSleep

Process is in uninterruptible sleep, typically I/O.

Idle

Linux, macOS, and FreeBSD specific: process is idle.

Locked

FreeBSD specific: process is locked.

Parked

Linux specific: process is parked.

Running

Process is running or runnable.

Sleeping

Process is waiting for an event.

Stopped

Process is stopped.

Suspended

NetBSD specific: process is suspended.

TracingStop

Process is stopped by debugger.

Unspecified

Undetermined state.

Waiting

FreeBSD specific: process is waiting.

WakeKill

Process is woken to be killed.

Waking

Process is waking from sleep.

Zombie

Process is terminated but not reaped by parent.

In this article
Back to top Generated by DocFX