aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEli Zaretskii2008-12-20 12:13:54 +0000
committerEli Zaretskii2008-12-20 12:13:54 +0000
commit91c85b706282144564f8bc805129babe4ffe5a3a (patch)
tree880078ec2a84d03715724c731860aa6af6769ad8
parent7d61c211122656ef33ff2f8bd869683b1bba0dca (diff)
downloademacs-91c85b706282144564f8bc805129babe4ffe5a3a.tar.gz
emacs-91c85b706282144564f8bc805129babe4ffe5a3a.zip
Add commentary about WINDOWSNT implementation of list_system_processes and
system_process_attributes.
-rw-r--r--src/sysdep.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/sysdep.c b/src/sysdep.c
index fbd49739377..18474c75b1b 100644
--- a/src/sysdep.c
+++ b/src/sysdep.c
@@ -3219,6 +3219,7 @@ list_system_processes ()
3219 return proclist; 3219 return proclist;
3220} 3220}
3221 3221
3222/* The WINDOWSNT implementation is on w32.c. */
3222#elif !defined (WINDOWSNT) 3223#elif !defined (WINDOWSNT)
3223 3224
3224Lisp_Object 3225Lisp_Object
@@ -3226,7 +3227,8 @@ list_system_processes ()
3226{ 3227{
3227 return Qnil; 3228 return Qnil;
3228} 3229}
3229#endif /* !defined (WINDOWSNT)*/ 3230
3231#endif /* !defined (WINDOWSNT) */
3230 3232
3231#ifdef GNU_LINUX 3233#ifdef GNU_LINUX
3232static void 3234static void
@@ -3607,6 +3609,7 @@ system_process_attributes (Lisp_Object pid)
3607 UNGCPRO; 3609 UNGCPRO;
3608 return attrs; 3610 return attrs;
3609} 3611}
3612
3610#elif defined (SOLARIS2) && defined (HAVE_PROCFS) 3613#elif defined (SOLARIS2) && defined (HAVE_PROCFS)
3611 3614
3612/* The <procfs.h> header does not like to be included if _LP64 is defined and 3615/* The <procfs.h> header does not like to be included if _LP64 is defined and
@@ -3750,6 +3753,7 @@ system_process_attributes (Lisp_Object pid)
3750 return attrs; 3753 return attrs;
3751} 3754}
3752 3755
3756/* The WINDOWSNT implementation is on w32.c. */
3753#elif !defined (WINDOWSNT) 3757#elif !defined (WINDOWSNT)
3754 3758
3755Lisp_Object 3759Lisp_Object