X-Git-Url: https://code.delx.au/gnu-emacs/blobdiff_plain/699c782b7668c44d0fa4446331b0590a6d5dac82..732fd4c7e11debd61c97eaaba3038d61e6ec7024:/src/syswait.h diff --git a/src/syswait.h b/src/syswait.h index aea9ea6e58..58918222e5 100644 --- a/src/syswait.h +++ b/src/syswait.h @@ -1,5 +1,5 @@ /* Define wait system call interface for Emacs. - Copyright (C) 1993-1995, 2000-2012 Free Software Foundation, Inc. + Copyright (C) 1993-1995, 2000-2015 Free Software Foundation, Inc. This file is part of GNU Emacs. @@ -25,10 +25,14 @@ along with GNU Emacs. If not, see . */ #include -#ifdef HAVE_SYS_WAIT_H /* We have sys/wait.h with POSIXoid definitions. */ +#ifdef HAVE_SYS_WAIT_H /* We have sys/wait.h with POSIXish definitions. */ #include #endif /* !HAVE_SYS_WAIT_H */ +#ifndef WCONTINUED +#define WCONTINUED 8 +#endif + #ifndef WCOREDUMP /* not POSIX */ #define WCOREDUMP(status) ((status) & 0x80) #endif @@ -51,9 +55,8 @@ along with GNU Emacs. If not, see . */ #define WTERMSIG(status) ((status) & 0x7f) #endif -#undef WRETCODE -#define WRETCODE(status) WEXITSTATUS (status) - +/* Defined in sysdep.c. */ +extern void wait_for_termination (pid_t, int *, bool); +extern pid_t child_status_changed (pid_t, int *, int); #endif /* EMACS_SYSWAIT_H */ -