diff options
Diffstat (limited to 'src/process.h')
| -rw-r--r-- | src/process.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/process.h b/src/process.h index 52142e55e94..89c7e8b1259 100644 --- a/src/process.h +++ b/src/process.h | |||
| @@ -201,6 +201,14 @@ extern Lisp_Object QCspeed; | |||
| 201 | extern Lisp_Object QCbytesize, QCstopbits, QCparity, Qodd, Qeven; | 201 | extern Lisp_Object QCbytesize, QCstopbits, QCparity, Qodd, Qeven; |
| 202 | extern Lisp_Object QCflowcontrol, Qhw, Qsw, QCsummary; | 202 | extern Lisp_Object QCflowcontrol, Qhw, Qsw, QCsummary; |
| 203 | 203 | ||
| 204 | /* Exit statuses for GNU programs that exec other programs. */ | ||
| 205 | enum | ||
| 206 | { | ||
| 207 | EXIT_CANCELED = 125, /* Internal error prior to exec attempt. */ | ||
| 208 | EXIT_CANNOT_INVOKE = 126, /* Program located, but not usable. */ | ||
| 209 | EXIT_ENOENT = 127 /* Could not find program to exec. */ | ||
| 210 | }; | ||
| 211 | |||
| 204 | /* Defined in callproc.c. */ | 212 | /* Defined in callproc.c. */ |
| 205 | 213 | ||
| 206 | extern void block_child_signal (void); | 214 | extern void block_child_signal (void); |