# HG changeset patch # User Eli Zaretskii # Date 1230995099 0 # Node ID 63bb1043409eb5184550dc467a7b0545fe1c6225 # Parent c089527800d9e19492b7b9e3dd56887a133d5b87 (list_system_processes, system_process_attributes) [MSDOS]: Don't use the default (no-op) implementation. diff -r c089527800d9 -r 63bb1043409e src/sysdep.c --- a/src/sysdep.c Sat Jan 03 15:04:25 2009 +0000 +++ b/src/sysdep.c Sat Jan 03 15:04:59 2009 +0000 @@ -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 @@ 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 @@ 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)