X-Git-Url: https://code.delx.au/gnu-emacs/blobdiff_plain/f46305c86cd247b2396e73ce8bb064f69373834d..d267aea2424783f5eefb6e733a6806ffd3323fa0:/src/syswait.h diff --git a/src/syswait.h b/src/syswait.h index 03e5cb5fe2..800d5721ce 100644 --- a/src/syswait.h +++ b/src/syswait.h @@ -1,12 +1,12 @@ /* Define wait system call interface for Emacs. - Copyright (C) 1993-1995, 2000-2013 Free Software Foundation, Inc. + Copyright (C) 1993-1995, 2000-2016 Free Software Foundation, Inc. This file is part of GNU Emacs. GNU Emacs is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by -the Free Software Foundation, either version 3 of the License, or -(at your option) any later version. +the Free Software Foundation, either version 3 of the License, or (at +your option) any later version. GNU Emacs is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of @@ -23,13 +23,16 @@ along with GNU Emacs. If not, see . */ #ifndef EMACS_SYSWAIT_H #define EMACS_SYSWAIT_H -#include #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 @@ -52,9 +55,6 @@ along with GNU Emacs. If not, see . */ #define WTERMSIG(status) ((status) & 0x7f) #endif -/* Defined in process.c. */ -extern void record_deleted_pid (pid_t); - /* Defined in sysdep.c. */ extern void wait_for_termination (pid_t, int *, bool); extern pid_t child_status_changed (pid_t, int *, int);