diff options
author | Eli Zaretskii <eliz@gnu.org> | 2008-12-20 12:13:54 +0000 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2008-12-20 12:13:54 +0000 |
commit | 6f15d1425172478f8fb1d0f1b5ab70eb8be66fe1 (patch) | |
tree | d3d532d359acc1a2976c88ffde85bcacbc00ebbf /src/sysdep.c | |
parent | 5abbc8e93897454e9839b4d9febcf7966dbbfe9e (diff) | |
download | emacs-6f15d1425172478f8fb1d0f1b5ab70eb8be66fe1.tar.gz |
Add commentary about WINDOWSNT implementation of list_system_processes and
system_process_attributes.
Diffstat (limited to 'src/sysdep.c')
-rw-r--r-- | src/sysdep.c | 6 |
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 () return proclist; } +/* The WINDOWSNT implementation is on w32.c. */ #elif !defined (WINDOWSNT) Lisp_Object @@ -3226,7 +3227,8 @@ list_system_processes () { return Qnil; } -#endif /* !defined (WINDOWSNT)*/ + +#endif /* !defined (WINDOWSNT) */ #ifdef GNU_LINUX static void @@ -3607,6 +3609,7 @@ system_process_attributes (Lisp_Object pid) UNGCPRO; return attrs; } + #elif defined (SOLARIS2) && defined (HAVE_PROCFS) /* 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) return attrs; } +/* The WINDOWSNT implementation is on w32.c. */ #elif !defined (WINDOWSNT) Lisp_Object |