summaryrefslogtreecommitdiff
path: root/src/sysdep.c
diff options
context:
space:
mode:
authorEli Zaretskii <eliz@gnu.org>2009-01-03 15:04:59 +0000
committerEli Zaretskii <eliz@gnu.org>2009-01-03 15:04:59 +0000
commitdbafb2ca7637a43fc0e4b2dc94bab5f22708cdca (patch)
tree9708e1e3f0b00a913d9fd10f45e6376b90d8d2e6 /src/sysdep.c
parente9a2ebbd84b381b543be664d62d8bdcaa734aa5d (diff)
downloademacs-dbafb2ca7637a43fc0e4b2dc94bab5f22708cdca.tar.gz
(list_system_processes, system_process_attributes) [MSDOS]: Don't use the
default (no-op) implementation.
Diffstat (limited to 'src/sysdep.c')
-rw-r--r--src/sysdep.c12
1 files changed, 7 insertions, 5 deletions
diff --git a/src/sysdep.c b/src/sysdep.c
index fe3a55bdda6..c1f193f96b6 100644
--- a/src/sysdep.c
+++ b/src/sysdep.c
@@ -1,6 +1,6 @@
/* Interfaces to system-dependent kernel and library entries.
Copyright (C) 1985, 1986, 1987, 1988, 1993, 1994, 1995, 1999, 2000, 2001,
- 2002, 2003, 2004, 2005, 2006, 2007, 2008
+ 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009
Free Software Foundation, Inc.
This file is part of GNU Emacs.
@@ -3219,8 +3219,9 @@ list_system_processes ()
return proclist;
}
-/* The WINDOWSNT implementation is on w32.c. */
-#elif !defined (WINDOWSNT)
+/* The WINDOWSNT implementation is on w32.c.
+ The MSDOS implementation is on dosfns.c. */
+#elif !defined (WINDOWSNT) && !defined (MSDOS)
Lisp_Object
list_system_processes ()
@@ -3761,8 +3762,9 @@ system_process_attributes (Lisp_Object pid)
return attrs;
}
-/* The WINDOWSNT implementation is on w32.c. */
-#elif !defined (WINDOWSNT)
+/* The WINDOWSNT implementation is on w32.c.
+ The MSDOS implementation is on dosfns.c. */
+#elif !defined (WINDOWSNT) && !defined (MSDOS)
Lisp_Object
system_process_attributes (Lisp_Object pid)