diff options
author | Eli Zaretskii <eliz@gnu.org> | 2009-01-02 15:06:02 +0000 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2009-01-02 15:06:02 +0000 |
commit | 89c874cfd7f3f42640cf4b2f917d9646be7f449c (patch) | |
tree | 7cb984768cf159f94e3b4f41a9b694eee5fbaa9f /src/process.c | |
parent | dca6c4189b8087267daf446463013227c9a91e7d (diff) | |
download | emacs-89c874cfd7f3f42640cf4b2f917d9646be7f449c.tar.gz emacs-89c874cfd7f3f42640cf4b2f917d9646be7f449c.tar.bz2 emacs-89c874cfd7f3f42640cf4b2f917d9646be7f449c.zip |
(top level) <Qtime, Qctime>: New variables.
(syms_of_process): staticpro them.
(Fsystem_process_attributes): Add their documentation to the doc string.
Diffstat (limited to 'src/process.c')
-rw-r--r-- | src/process.c | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/src/process.c b/src/process.c index 681c9fa783d..abe5b95905f 100644 --- a/src/process.c +++ b/src/process.c @@ -149,7 +149,7 @@ extern Lisp_Object QCfilter; Lisp_Object Qeuid, Qegid, Qcomm, Qstate, Qppid, Qpgrp, Qsess, Qttname, Qtpgid; Lisp_Object Qminflt, Qmajflt, Qcminflt, Qcmajflt, Qutime, Qstime, Qcstime; Lisp_Object Qcutime, Qpri, Qnice, Qthcount, Qstart, Qvsize, Qrss, Qargs; -Lisp_Object Quser, Qgroup, Qetime, Qpcpu, Qpmem; +Lisp_Object Quser, Qgroup, Qetime, Qpcpu, Qpmem, Qtime, Qctime; #ifdef HAVE_SOCKETS #define NETCONN_P(p) (EQ (XPROCESS (p)->type, Qnetwork)) @@ -7119,8 +7119,10 @@ integer or floating point values. cmajflt -- cumulative number of major page faults (number) utime -- user time used by the process, in the (HIGH LOW USEC) format stime -- system time used by the process, in the (HIGH LOW USEC) format + time -- sum of utime and stime, in the (HIGH LOW USEC) format cutime -- user time used by the process and its children, (HIGH LOW USEC) cstime -- system time used by the process and its children, (HIGH LOW USEC) + ctime -- sum of cutime and cstime, in the (HIGH LOW USEC) format pri -- priority of the process (number) nice -- nice value of the process (number) thcount -- process thread count (number) @@ -7386,10 +7388,14 @@ syms_of_process () staticpro (&Qutime); Qstime = intern ("stime"); staticpro (&Qstime); + Qtime = intern ("time"); + staticpro (&Qtime); Qcutime = intern ("cutime"); staticpro (&Qcutime); Qcstime = intern ("cstime"); staticpro (&Qcstime); + Qctime = intern ("ctime"); + staticpro (&Qctime); Qpri = intern ("pri"); staticpro (&Qpri); Qnice = intern ("nice"); @@ -7843,8 +7849,10 @@ integer or floating point values. cmajflt -- cumulative number of major page faults (number) utime -- user time used by the process, in the (HIGH LOW USEC) format stime -- system time used by the process, in the (HIGH LOW USEC) format + time -- sum of utime and stime, in the (HIGH LOW USEC) format cutime -- user time used by the process and its children, (HIGH LOW USEC) cstime -- system time used by the process and its children, (HIGH LOW USEC) + ctime -- sum of cutime and cstime, in the (HIGH LOW USEC) format pri -- priority of the process (number) nice -- nice value of the process (number) thcount -- process thread count (number) |