aboutsummaryrefslogtreecommitdiffstats
path: root/src/syswait.h
diff options
context:
space:
mode:
authorBill Wohler2012-11-24 19:43:02 -0800
committerBill Wohler2012-11-24 19:43:02 -0800
commit5244bc019bf7376caff3bb198ff674e0ad9fb0e6 (patch)
tree02ee1615e904771f692ec2957c79a08ae029a13d /src/syswait.h
parent9f7e719509474e92f85955e22e57ffeebd4e96f3 (diff)
parentc07a6ded1df2f4156badc9add2953579622c3722 (diff)
downloademacs-5244bc019bf7376caff3bb198ff674e0ad9fb0e6.tar.gz
emacs-5244bc019bf7376caff3bb198ff674e0ad9fb0e6.zip
Merge from trunk.
Diffstat (limited to 'src/syswait.h')
-rw-r--r--src/syswait.h10
1 files changed, 6 insertions, 4 deletions
diff --git a/src/syswait.h b/src/syswait.h
index 44a824abadb..aa4c4bcf527 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-2011 Free Software Foundation, Inc. 2 Copyright (C) 1993-1995, 2000-2012 Free Software Foundation, Inc.
3 3
4This file is part of GNU Emacs. 4This file is part of GNU Emacs.
5 5
@@ -51,9 +51,11 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
51#define WTERMSIG(status) ((status) & 0x7f) 51#define WTERMSIG(status) ((status) & 0x7f)
52#endif 52#endif
53 53
54#undef WRETCODE 54/* Defined in process.c. */
55#define WRETCODE(status) WEXITSTATUS (status) 55extern void record_child_status_change (pid_t, int);
56 56
57/* Defined in sysdep.c. */
58extern void wait_for_termination (pid_t);
59extern void interruptible_wait_for_termination (pid_t);
57 60
58#endif /* EMACS_SYSWAIT_H */ 61#endif /* EMACS_SYSWAIT_H */
59