1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62
|
#include <stdlib.h>
#include <stdio.h>
#include <fcntl.h>
#include <dirent.h>
#include <string.h>
#include <sys/resource.h>
#include <unistd.h>
#include <sys/proc.h> /* needed for process state constants */
#include <sys/table.h> /* needed for process state constants */
#include <sys/statvfs.h>
#include <sys/types.h>
#include <sys/procfs.h>
#ifdef i386
#undef SP
#define SP sp
#endif
/* How many processes to get at once from table() */
#define PROCCNT 64
/****************************************/
/* Process state strings that we return */
/****************************************/
#define SLEEP "sleep"
#define WAIT "wait"
#define RUN "run"
#define IDLE "idle"
#define ZOMBIE "defunct"
#define STOP "stop"
#define ONPROC "onprocessor"
/* Digital Unix is an all-or-nothing deal, all this stuff comes out of
one structure, so we don't need to dick around with the format much */
static char Format[] = "iiiiiiViiiilllllllssss";
/* Mapping of field to type */
static char* Fields[] = {
"uid",
"gid",
"euid",
"egid",
"suid",
"sgid",
"groups",
"pid",
"ppid",
"pgrp",
"sess",
"priority",
"ttynum",
"flags",
"time",
"size",
"rss",
"start",
"fname",
"pctcpu",
"state",
"cmndline"
};
|