comparison src/process.c @ 100571:ebc59d34e84a

* process.c: (Flist_system_processes): (Fsystem_process_attributes): Fix strange CVS problem, return the correct value.
author Dan Nicolaescu <dann@ics.uci.edu>
date Fri, 19 Dec 2008 22:19:49 +0000
parents dcc7f5970d5c
children 29b9d06ea622
comparison
equal deleted inserted replaced
100570:496de5bd1f6d 100571:ebc59d34e84a
7793 7793
7794 See `system-process-attributes' for getting attributes of a process 7794 See `system-process-attributes' for getting attributes of a process
7795 given its ID. */) 7795 given its ID. */)
7796 () 7796 ()
7797 { 7797 {
7798 return Qnil; 7798 return list_system_processes ();
7799 } 7799 }
7800 7800
7801 DEFUN ("system-process-attributes", Fsystem_process_attributes, 7801 DEFUN ("system-process-attributes", Fsystem_process_attributes,
7802 Ssystem_process_attributes, 1, 1, 0, 7802 Ssystem_process_attributes, 1, 1, 0,
7803 doc: /* Return attributes of the process given by its PID, a number. 7803 doc: /* Return attributes of the process given by its PID, a number.
7849 args -- command line which invoked the process (string). */) 7849 args -- command line which invoked the process (string). */)
7850 (pid) 7850 (pid)
7851 7851
7852 Lisp_Object pid; 7852 Lisp_Object pid;
7853 { 7853 {
7854 return Qnil; 7854 return system_process_attributes (pid);
7855 } 7855 }
7856 7856
7857 void 7857 void
7858 init_process () 7858 init_process ()
7859 { 7859 {