Proc-ProcessTable

 view release on metacpan or  search on metacpan

os/Cygwin.h  view on Meta::CPAN

{
    SLEEP,
    RUN,
    DEFUNCT,
    STOP,
    UWAIT,
};


/* strings, to make sure they get placed in read only memory,
 * ditto for pointers to them and so we avoid relocations */
static const char strings[] =
{
  /* process state */
  "sleep\0"
  "run\0"
  "defunct\0"
  "stop\0"
  "uwait\0"
  /* error messages */
  "/proc unavailable\0"

os/Linux.h  view on Meta::CPAN

    STOP,
    UWAIT,
    DEAD,
    WAKEKILL,
    TRACINGSTOP,
    PARKED
};


/* strings, to make sure they get placed in read only memory,
 * ditto for pointers to them and so we avoid relocations */
static const char strings[] =
{
/* process state */
    "sleep\0"
    "wait\0"
    "run\0"
    "idle\0"
    "defunct\0"
    "stop\0"
    "uwait\0"



( run in 0.488 second using v1.01-cache-2.11-cpan-71847e10f99 )