1SUPPORTED ATTRIBUTES
2====================
3  uid         UID of process
4  euid	      Effective UID of process
5  suid	      Saved UID of process
6  fuid 	      File UID of process
7  gid         GID of process
8  egid	      Effective GID of process
9  sgid	      Saved GID of process
10  fgid 	      File GID of process
11  pid         process ID
12  ppid        parent process ID
13  pgrp        process group
14  sess        session ID
15  priority    priority of process
16  ttynum      tty number of process
17  flags       flags of process
18  minflt      minor page faults
19  cminflt     child minor page faults
20  majflt      major page faults
21  cmajflt     child major page faults
22  utime       user mode time (microseconds)
23  stime       kernel mode time (microseconds)
24  cutime      child utime (microseconds)
25  cstime      child stime (microseconds)
26  time        user + system time (microseconds)
27  ctime       child user + system time (microseconds)
28  size        virtual memory size (bytes)
29  rss         resident set size (bytes)
30  wchan       address of current system call
31  fname       file name
32  start       start time (seconds since the epoch)
33  pctcpu      percent cpu used since process started
34  state       state of process
35  pctmem      percent memory
36  cmndline    full command line of process
37  exec        absolute filename (including path) of executed command
38  ttydev      path of process's tty
39  cwd         current directory of process
40
41NOTE
42====
43This now correctly gives you microseconds.  Previously all times were actually
44in milliseconds even though this file said microseconds.
45    -Jason Smith
46
47BUGS
48====
49Though times are now converted to microseconds, they are limited to jiffie
50resolution.  A jiffie is 100 Hertz on most platforms, 1024 Hertz on Alpha.
51    -Philip Gwyn
52