Become an expert in R — Interactive courses, Cheat Sheets, certificates and more!
Get Started for Free

ps_status

Current process status


Description

One of the following:

  • "idle": Process being created by fork, macOS only.

  • "running": Currently runnable on macOS and Windows. Actually running on Linux.

  • "sleeping" Sleeping on a wait or poll.

  • "disk_sleep" Uninterruptible sleep, waiting for an I/O operation (Linux only).

  • "stopped" Stopped, either by a job control signal or because it is being traced.

  • "tracing_stop" Stopped for tracing (Linux only).

  • "zombie" Zombie. Finished, but parent has not read out the exit status yet.

  • "dead" Should never be seen (Linux).

  • "wake_kill" Received fatal signal (Linux only).

  • "waking" Paging (Linux only, not valid since the 2.6.xx kernel).

Usage

ps_status(p = ps_handle())

Arguments

p

Process handle.

Details

Works for zombie processes.

Value

Character scalar.

See Also

Examples

p <- ps_handle()
p
ps_status(p)

ps

List, Query, Manipulate System Processes

v1.6.0
MIT + file LICENSE
Authors
Jay Loden [aut], Dave Daeschler [aut], Giampaolo Rodola' [aut], Gábor Csárdi [aut, cre], RStudio [cph]
Initial release

We don't support your browser anymore

Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.