X-Git-Url: https://code.delx.au/gnu-emacs/blobdiff_plain/9f6f48455f7d25e5cc2d50485d98ff3af43946a2..0877d0dc24ee792b9b14592869ea1aa0934aee58:/src/syswait.h diff --git a/src/syswait.h b/src/syswait.h index 9d84876d4b..03e5cb5fe2 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-2013 Free Software Foundation, Inc. This file is part of GNU Emacs. @@ -23,6 +23,7 @@ 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. */ @@ -51,4 +52,11 @@ 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); + #endif /* EMACS_SYSWAIT_H */