diff options
| author | Jim Blandy | 1993-05-20 02:14:56 +0000 |
|---|---|---|
| committer | Jim Blandy | 1993-05-20 02:14:56 +0000 |
| commit | 161aa2f8d8e00a768d234a84544fd93616c5590b (patch) | |
| tree | a804c29d8d5dd72863981792c83775b3d2393447 /src/process.c | |
| parent | 12a07afc12fc2bc34a0a4dbb6c72fc9cedcb3c44 (diff) | |
| download | emacs-161aa2f8d8e00a768d234a84544fd93616c5590b.tar.gz emacs-161aa2f8d8e00a768d234a84544fd93616c5590b.zip | |
Some more changes from Michael K. Johnson for Linux.
* s/template.h: Mention that you should #define HAVE_TERMIO or
HAVE_TERMIOS, but not both, and that HAVE_TERMIOS is preferred.
* systty.h (EMACS_SET_TTY_PGRP): Don't assign the return value of
tcsetpgrp to *pgid; it's just a status value.
* config.h.in (HAVE_RANDOM): This shouldn't be defined on Linux
systems using XFree386, and perhaps is inappropriate in general.
* m/intel386.h: #undefine the integer size macros, since the Linux
<values.h> file #defines them itself.
* mem-limits.h (get_lim_data): Linux has the ulimit call; if it
fails, fall back on ULIMIT_BREAK_VALUE.
* process.c: Linux needs the WAITTYPE, etc. definitions.
* unexec.c (hdr, ohdr): Linux has the ordinary `struct exec' type;
no need to use SYSV names.
* s/linux.h: New file.
Diffstat (limited to 'src/process.c')
| -rw-r--r-- | src/process.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/process.c b/src/process.c index 84a4dbd0c7e..2b2fc8304dc 100644 --- a/src/process.c +++ b/src/process.c | |||
| @@ -110,7 +110,7 @@ static Lisp_Object stream_process; | |||
| 110 | 110 | ||
| 111 | #ifndef VMS | 111 | #ifndef VMS |
| 112 | #ifndef WAITTYPE | 112 | #ifndef WAITTYPE |
| 113 | #if !defined (BSD) && !defined (UNIPLUS) && !defined (STRIDE) && !(defined (HPUX) && !defined (NOMULTIPLEJOBS)) && !defined (HAVE_WAIT_HEADER) | 113 | #if (!defined (BSD) && !defined (UNIPLUS) && !defined (STRIDE) && !(defined (HPUX) && !defined (NOMULTIPLEJOBS)) && !defined (HAVE_WAIT_HEADER)) || defined (LINUX) |
| 114 | #define WAITTYPE int | 114 | #define WAITTYPE int |
| 115 | #define WIFSTOPPED(w) ((w&0377) == 0177) | 115 | #define WIFSTOPPED(w) ((w&0377) == 0177) |
| 116 | #define WIFSIGNALED(w) ((w&0377) != 0177 && (w&~0377) == 0) | 116 | #define WIFSIGNALED(w) ((w&0377) != 0177 && (w&~0377) == 0) |