mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-01-09 13:10:57 -08:00
Add commentary about WINDOWSNT implementation of list_system_processes and
system_process_attributes.
This commit is contained in:
parent
7d61c21112
commit
91c85b7062
1 changed files with 5 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue