emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] emacs/src process.c


From: Eli Zaretskii
Subject: [Emacs-diffs] emacs/src process.c
Date: Fri, 02 Jan 2009 15:06:02 +0000

CVSROOT:        /cvsroot/emacs
Module name:    emacs
Changes by:     Eli Zaretskii <eliz>    09/01/02 15:06:02

Modified files:
        src            : process.c 

Log message:
        (top level) <Qtime, Qctime>: New variables.
        (syms_of_process): staticpro them.
        (Fsystem_process_attributes): Add their documentation to the doc string.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/emacs/src/process.c?cvsroot=emacs&r1=1.575&r2=1.576

Patches:
Index: process.c
===================================================================
RCS file: /cvsroot/emacs/emacs/src/process.c,v
retrieving revision 1.575
retrieving revision 1.576
diff -u -b -r1.575 -r1.576
--- process.c   1 Jan 2009 15:58:40 -0000       1.575
+++ process.c   2 Jan 2009 15:06:02 -0000       1.576
@@ -149,7 +149,7 @@
 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 @@
  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 @@
   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 @@
  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)




reply via email to

[Prev in Thread] Current Thread [Next in Thread]