aboutsummaryrefslogtreecommitdiffstats
path: root/src/syswait.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/syswait.h')
-rw-r--r--src/syswait.h8
1 files changed, 2 insertions, 6 deletions
diff --git a/src/syswait.h b/src/syswait.h
index 03e5cb5fe2e..db197b82fb7 100644
--- a/src/syswait.h
+++ b/src/syswait.h
@@ -1,5 +1,5 @@
1/* Define wait system call interface for Emacs. 1/* Define wait system call interface for Emacs.
2 Copyright (C) 1993-1995, 2000-2013 Free Software Foundation, Inc. 2 Copyright (C) 1993-1995, 2000-2014 Free Software Foundation, Inc.
3 3
4This file is part of GNU Emacs. 4This file is part of GNU Emacs.
5 5
@@ -23,10 +23,9 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
23#ifndef EMACS_SYSWAIT_H 23#ifndef EMACS_SYSWAIT_H
24#define EMACS_SYSWAIT_H 24#define EMACS_SYSWAIT_H
25 25
26#include <stdbool.h>
27#include <sys/types.h> 26#include <sys/types.h>
28 27
29#ifdef HAVE_SYS_WAIT_H /* We have sys/wait.h with POSIXoid definitions. */ 28#ifdef HAVE_SYS_WAIT_H /* We have sys/wait.h with POSIXish definitions. */
30#include <sys/wait.h> 29#include <sys/wait.h>
31#endif /* !HAVE_SYS_WAIT_H */ 30#endif /* !HAVE_SYS_WAIT_H */
32 31
@@ -52,9 +51,6 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
52#define WTERMSIG(status) ((status) & 0x7f) 51#define WTERMSIG(status) ((status) & 0x7f)
53#endif 52#endif
54 53
55/* Defined in process.c. */
56extern void record_deleted_pid (pid_t);
57
58/* Defined in sysdep.c. */ 54/* Defined in sysdep.c. */
59extern void wait_for_termination (pid_t, int *, bool); 55extern void wait_for_termination (pid_t, int *, bool);
60extern pid_t child_status_changed (pid_t, int *, int); 56extern pid_t child_status_changed (pid_t, int *, int);